det:矩阵行列式
句法:d = det(A)
描述:d = det(A),返回方阵的行列式A。
A = [1-24; -5 2 0; 1 0 3]
A = 3×3
1 -2 4
-5 2 0
1 0 3
计算行列式A。
d = det(A) 则d = -32