so i have a possibly singular coefficient matrix A . (it's sometimes singular and sometimes not !) (in the case of singularity it has many solutions we only need one)
i know using an inverse to find the answer to a system of linear equations is an awful idea .
so it seems even in this case we should use methods like Gauss-Jordan to solve the system even when it is singular . is there any method to solve singular systems like Gauss-Jordan.(to give a answer)
and i read the matlab document on solving this types of systems and it says that we should use the pseudo-inverse function pinv like : x = pinv(A)*b
this just looks as awful as taking the inverse (since for a non-singular matrix pseudo-inverse is same as inverse). (am I correct?)
and is it the case that we don't have any other more efficient choices of finding and answer in this case ??
A\b
? – Rodrigo de Azevedo Jul 15 '16 at 01:51