matlab中具有符号工具箱的矩阵的逆矩阵
答
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