Borrar filtros
Borrar filtros

Eigenvalue decomposition of very large matrices

29 visualizaciones (últimos 30 días)
Conor
Conor el 4 de Feb. de 2014
Comentada: Matt J el 4 de Feb. de 2014
I'm doing a spectral decomposition of symmetric positive matrices. I have a 16Gb machine and can compute the evalues and evectors for a 30k x 30k matrix in reasonable time (~2hr). I need to scale up to a matrix 20 times that size. As eig is cubic this would take a couple of years.
I have access to a cluster that has a matlab parallel licence but am not sure how to proceed. All advice is much appreciated.
Thanks in advance.
  1 comentario
Matt J
Matt J el 4 de Feb. de 2014
Editada: Matt J el 4 de Feb. de 2014
I'm naturally suspicious of anything that looks like it requires that much brute force compute power.
Are you sure your matrix has no special structure to it that could be exploited other than symmetry and positivity? Is the matrix really "positive" or did you mean "positive definite"?

Iniciar sesión para comentar.

Respuestas (1)

Paul
Paul el 4 de Feb. de 2014
Editada: Paul el 4 de Feb. de 2014
If you have a sparse matrix (lots of zeros), you should use eigs (determines the eigenvalues of a sparse matrix). First declare the matrix sparse by doing:
M=sparse(M);
eigval = eigs(M,30000);
Normally eigs returns the 6 largest eigenvalues. The second argument of eigs in this case is the number of eigenvalues you want. If you want them all, put 30000 there.
  3 comentarios
Paul
Paul el 4 de Feb. de 2014
Hmm you are right, if you actually want all eigenvalues Matlab uses the eig alghorithm. If you dont want them all though, but only the largest k eigenvalues, eigs should be faster.
Matt J
Matt J el 4 de Feb. de 2014
Conor commented
Unfortunately my matrix starts out as sparse but I need to transform it by subtracting it from 1.

Iniciar sesión para comentar.

Categorías

Más información sobre Linear Algebra en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by