how to solve singular matrix
Ältere Kommentare anzeigen
i have a problem on singular matrix how to solve it please answer me there any method to solve it
Antworten (2)
Fattah alizadeh
am 30 Mai 2012
1 Stimme
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
Kategorien
Mehr zu Linear Algebra finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!