Higher Order (6X6) Matrix Inverse with Variables

4 次查看(过去 30 天)
Hi,
I want to obtained Inverse of higher order (6X6) matrix via matlab
Matrix Like This
Is it possible to obtained inverse of this matrix from Matlab?

采纳的回答

Ameer Hamza
Ameer Hamza 2020-11-25
You need symbolic toolbox for that. For example
A = randi(10, 6);
syms S
H = S.*eye(6)-A;
H_inv = inv(H)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Number Theory 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by