1、inv函数
A=rand(3,3) %参数分别为矩阵行数和列数 inv(A) %矩阵的逆
2、A−1方法
A=rand(3,3) A^-1
3、eye()/A方法
A=rand(3,3) eye(3,3)/A %即E/A