Higher Order (6X6) Matrix Inverse with Variables

조회 수: 4 (최근 30일)
Pemendra Kumar Pardhi
Pemendra Kumar Pardhi 2020년 11월 25일
댓글: 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?

채택된 답변

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