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 次查看(过去 30 天)
显示 更早的评论
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.
回答(1 个)
Steven Lord
2025-11-21,14:08
移动:Steven Lord
2025-11-21,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
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!