how to solve singular matrix
이전 댓글 표시
i have a problem on singular matrix how to solve it please answer me there any method to solve it
답변 (2개)
Fattah alizadeh
2012년 5월 30일
1 개 추천
It depends on the type of solution you are looking for. You can obtain the minimum norm solution using pinv, e.g.,
A=[2 0 0; 0 2 0; 0 0 0] %Clearly singular
b=[6;4;2]
pinv(A)*b %minimum norm solution
카테고리
도움말 센터 및 File Exchange에서 Special Functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!