I have developed an algorithm that resolves this issue. My current approach efficiently computes the Nth eigenvalue of a sorted, extremely sparse matrix with minimal resource consumption. Please feel free to contact me via email to discuss further. 12224043@zju.edu.cn
How to compute the middle part of a sorted eigenvalues of an extremely large sparse matrix
28 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I currently have a large sparse matrix H of size k×k (which is symmetric and real). If its sorted eigenvalues are denoted as Ep, I need to compute the k/2th and k/2+1th values of Ep (which I mean middle part of the sorted eigenvalues). Is there a fast method for this?
Given that H is too large to use 'eig' directly, I have also attempted 'eigs', but this proved impractical. Because 'eigs' only computes the smallest few eigenvalues of H, whereas the two values I require are not near zero.
Respuestas (1)
Steven Lord
el 21 de Nov. de 2025 a las 14:08
Movida: Steven Lord
el 21 de Nov. de 2025 a las 14:19
With the default options, eigs computes the largest eigenvalues and eigenvectors. But depending on what you specify as the sigma output argument, it can compute other quantities. If you know or can estimate a value of sigma between those two eigenvalues, you could get the eigenvalues closest to that value.
A = magic(501);
d = sort(eig(A));
S = sparse(A); % Yes, I know, Big Sparse.
format longg
d(20:30)
ds = eigs(S, 4, -800000) % 4 eigenvalues close to -800000
Ver también
Categorías
Más información sobre Linear Algebra en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!