How to inverse a matrix efficiently?
Mostrar comentarios más antiguos
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!
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 28 de Sept. de 2014
Editada: Image Analyst
el 28 de Sept. de 2014
0 votos
Have you tried the inv() function to compute the inverse of a matrix?
1 comentario
Image Analyst
el 28 de Sept. de 2014
complianceMatrix = inv(stiffnessMatrix);
Categorías
Más información sobre Symbolic Math Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!