使用MATLAB的det函数计算矩阵的行列式。 矩阵A的行列式由det(A)给出。
使用以下代码创建脚本文件 -
a = [ 1 2 3; 2 3 4; 1 2 5] det(a)
运行该文件时,它显示以下结果 -
a = 1 2 3 2 3 4 1 2 5 ans = -2