How to inverse a matrix efficiently?
Mostra commenti meno recenti
Hi All,
I have a 6x6 matrix with many symbolic variables inside.
I am looking to invert this matrix.
The matrix i have is the "stiffness matrix" in solid mechanics, and i'm looking to get the "compliance matrix" which is just the inverse.
I am not solving a linear set of equations, so the A\b trick doesnt work for me.
Is there a way to mimic the steps of the A\b inverse on a single matrix? I suspect no otherwise the command would already exist, but i may as well ask.
Any help would be greatly appreciated
Thanks!
Risposta accettata
Più risposte (1)
Image Analyst
il 28 Set 2014
Modificato: Image Analyst
il 28 Set 2014
0 voti
Have you tried the inv() function to compute the inverse of a matrix?
1 Commento
Image Analyst
il 28 Set 2014
complianceMatrix = inv(stiffnessMatrix);
Categorie
Scopri di più su Symbolic Math Toolbox in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!