How to inverse a matrix efficiently?
Show older comments
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!
Accepted Answer
More Answers (1)
Image Analyst
on 28 Sep 2014
Edited: Image Analyst
on 28 Sep 2014
0 votes
Have you tried the inv() function to compute the inverse of a matrix?
1 Comment
Image Analyst
on 28 Sep 2014
complianceMatrix = inv(stiffnessMatrix);
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!