Higher Order (6X6) Matrix Inverse with Variables

2 visualizaciones (últimos 30 días)
Pemendra Kumar Pardhi
Pemendra Kumar Pardhi el 25 de Nov. de 2020
Comentada: Pemendra Kumar Pardhi el 25 de Nov. de 2020
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?

Respuesta aceptada

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

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by