Tagged Questions
2
votes
3answers
63 views
Obtain null space or single dimensional space which is its best approximation efficiently
I have been doing this using an svd computation
[U, S, V] = svd(A)
wherein I use the last column of A as my null space approximation. Since A gets really large, I realized that this is slowing ...