Skip to content

Commit ab0aa73

Browse files
authored
Update 729-math-determ.markdown
1 parent 8f5cc7e commit ab0aa73

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# DETERM
22

3-
> DETERM (A[, toler])
3+
> D = DETERM (A [, toler])
44
5-
Determinant of A. toler = tolerance number. the absolute value of the lowest acceptable number. default = 0.
5+
Determinant of `A`. `toler` is the tolerance number. It is equivalent to the absolute value of the lowest acceptable number. Default value is `0`.
6+
7+
### Example
68

79
```
810
A = [ 0, 1, 2; 3, 2, 1; 1, 1, 0]
9-
print determ(A)
11+
print determ(A) ' Output: 3
1012
```
1113

0 commit comments

Comments
 (0)