用符号工具箱在matlab中反转矩阵

时间:2011-03-12 09:56:07

标签: matlab symbolic-math matrix-inverse

我是Matlab的新手。如何使用符号工具箱计算矩阵的逆矩阵? 在我的矩阵中有一个laplace变量“s”。

1 个答案:

答案 0 :(得分:0)

syms('s', 'x');                      % You declare the symbols `s' and `x' this way.
M = [exp(-s)*x 1; 0 exp(-s)*sin(x)]; % This is a sample matrix
M*inv(M)                             % inv() gives you the inverse