OCTAVE
::
DET
Function:
det
( A )
Compute the determinant of the square matrix A.
Example:
octave: > A = [ 1, 2; 2, 1 ] A = 1 2 2 1 octave: > det( A ) ans = -3
See Also:
MAXIMA
::
DETERMINANT
... Determinant of a Square Matrix
OCTAVE
::
DET