Higher Order (6X6) Matrix Inverse with Variables
1 回表示 (過去 30 日間)
古いコメントを表示
Dr. Pemendra Kumar Pardhi
2020 年 11 月 25 日
コメント済み: Dr. Pemendra Kumar Pardhi
2020 年 11 月 25 日
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?
0 件のコメント
採用された回答
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 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!