如何用matlab 算行列式的值?
问题描述:
如何用matlab 算行列式的值?
答
>> A=[1 2 5 8
10 8 7 6
4 56 8 23
1 56 88 3];
>> det(A)
ans =
-341874
det()是求行列式的函数