Function Reference
Matrix determinant
d = det(A)
Computes the determinant of a square matrix.
Scalar determinant value
>> det([1 2; 3 4])
-2
>> det(eye(3))
1