Re: Solving matrix eqn. Ax = 0


[ Follow Ups ] [ Post Followup ] [ Netlib Discussion Forum ] [ FAQ ]

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 temp=+a[j,i]*a[j,i];
x[i]=temp;
temp=0;
}
}



Follow Ups:



Post a Followup

Name:
E-Mail:

Subject:

Comments:

Optional Link URL:
Link Title:


[ Follow Ups ] [ Post Followup ] [ Netlib Discussion Forum ] [ FAQ ]