How to inverse a matrix efficiently?
Afficher commentaires plus anciens
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!
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 28 Sep 2014
Modifié(e) : Image Analyst
le 28 Sep 2014
0 votes
Have you tried the inv() function to compute the inverse of a matrix?
1 commentaire
Image Analyst
le 28 Sep 2014
complianceMatrix = inv(stiffnessMatrix);
Catégories
En savoir plus sur Symbolic Math Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!