Skip to content
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

why are eigenvalues in decreasing order? #19

Open
taylorreiter opened this issue May 28, 2019 · 1 comment
Open

why are eigenvalues in decreasing order? #19

taylorreiter opened this issue May 28, 2019 · 1 comment
Labels

Comments

@taylorreiter
Copy link

When using the destiny implementation of diffusion maps, we observed that eigenvalues obtained were decreasing, starting from the first index to the last. Have the values been altered (additively inverted)? I'm used to seeing the leading eigenvalue have the smallest value second to the zero values, and am having a hard time interpreting the meaning of the eigenvalues returned by eigenvalues(dm).
Thank you!

@flying-sheep
Copy link
Collaborator

flying-sheep commented May 29, 2019

That’s curious, the most popular numerical spectral decomposition algorithm (Arnoldi/Lanczos) is used everywhere in its ARPACK implementation. Scipy, igraph, MATLAB, you name it.

And that algorithm is best at finding extremal eigenvalues. Every single one of those popular libraries should give you the largest-magnitude eigenvalues by default and warn you that finding the small ones will be slow and maybe won’t converge.

So where did you see those unusual small eigenvalues?

PS: check out the text below eqn. 9 here for interpretation of the eigenvalues. lower = noisier

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants