-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
svds implementation #28
Comments
I'm pretty sure this trick uses the relationship between singular values as "square roots" of the eigenvalues, and as such would be numerically unstable in that the computation works with a matrix that has a condition number which is roughly squared compared to the original matrix. (In the same vein as why normal equation methods like CGNE aren't currently favored in iterative methods) Given that |
Agree. |
On second thoughts, it would be nice to have a working |
Related: #106 |
It seems that the way octave implements
svds
is as follows:If you have the octave repo, you can see the implementation in
octave-3.6.4/scripts/sparse/svds.m
.I see some pre and post processing too.
Should we go ahead this way for our
svds
implementation too?The text was updated successfully, but these errors were encountered: