Posted by Shadi Mohseni on October 19, 1999 at 07:44:32:
In Reply to: Re: Solving matrix eqn. Ax = 0 posted by Seyed Alireza Hashemi Golpayegani on May 17, 1999 at 02:30:55:
: : I am interested in any routines which can "solve" the matrix eqn. Ax = 0 (A is a singular N by N matrix and x is an N element vector). In my case A is also symmetric, if that is any help.
void solve();
{ int temp;
for (int i=1; i
for (int j=1; j
x[i]=temp;
temp=0;
}
}