left eigenvectors using eigs with sparse matrices
5 views (last 30 days)
Show older comments
Alexander Holmes
on 31 Mar 2020
Commented: Ameer Hamza
on 31 Mar 2020
Is there any way of using eigs (not eig) to calculate left eigenvectors of a sparse matrix?
0 Comments
Accepted Answer
Ameer Hamza
on 31 Mar 2020
Edited: Ameer Hamza
on 31 Mar 2020
Here M is your matrix
[right_eig_vectors, eig_val, left_eig_vectors] = eig(M);
2 Comments
Ameer Hamza
on 31 Mar 2020
In that case, you can find left eigenvectors like this
[right_eig_vector, rig_val] = eigs(M);
[left_eig_vector, ~] = eigs(M');
More Answers (0)
See Also
Categories
Find more on Linear Algebra in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!