How can I get the (approximate) eigenvectors of a huge matrix?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a huge symmetric matrix M and I want to get the eigenvectors to the k smallest eigenvalues of M (which have to be greater than 0). I know that the smallest eigenvalue is 0.
Currently I am using
eigs(M,k,eps)
but this results in memory consumption of over 100GB of RAM.
Réponses (2)
Thorsten
le 2 Déc 2014
If M contains many 0's you can define M as a sparse matrix to speed up computation.
Voir également
Catégories
En savoir plus sur Linear Algebra dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!