用matlab 怎么求矩阵的行列式
问题描述:
用matlab 怎么求矩阵的行列式
答
用函数det().
如A=[1,2;3,4],
d=det(A),
运行得d=-2.