Numerically solving the null vector

  • Thread starter Thread starter wdlang
  • Start date Start date
  • Tags Tags
    Vector
wdlang
Messages
306
Reaction score
0
i have a 1000 by 1000 matrix A

A is definitely singular

I want to solve the null vector numerically

How to do this?

matlab does not work!
 
Physics news on Phys.org
wdlang said:
i have a 1000 by 1000 matrix A

A is definitely singular

I want to solve the null vector numerically

How to do this?

matlab does not work!

Can you clarify what you mean by "solve the null vector"? Do you mean that you want to find a vector x \neq 0 such that Ax = 0? i.e., to find a nonzero element of the null space?
 
jbunniii said:
Can you clarify what you mean by "solve the null vector"? Do you mean that you want to find a vector x \neq 0 such that Ax = 0? i.e., to find a nonzero element of the null space?

yes!
 
wdlang said:
yes!

If you want to use Matlab to do it, look up the "null" command:

Z = null(A);

returns an orthonormal basis for the null space of A.
 
Back
Top