How to inverse a matrix efficiently?
이전 댓글 표시
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!
채택된 답변
추가 답변 (1개)
Image Analyst
2014년 9월 28일
편집: Image Analyst
2014년 9월 28일
0 개 추천
Have you tried the inv() function to compute the inverse of a matrix?
댓글 수: 1
Image Analyst
2014년 9월 28일
complianceMatrix = inv(stiffnessMatrix);
카테고리
도움말 센터 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!