left eigenvectors using eigs with sparse matrices
5 次查看(过去 30 天)
显示 更早的评论
Is there any way of using eigs (not eig) to calculate left eigenvectors of a sparse matrix?
0 个评论
采纳的回答
Ameer Hamza
2020-3-31
编辑:Ameer Hamza
2020-3-31
Here M is your matrix
[right_eig_vectors, eig_val, left_eig_vectors] = eig(M);
2 个评论
Ameer Hamza
2020-3-31
In that case, you can find left eigenvectors like this
[right_eig_vector, rig_val] = eigs(M);
[left_eig_vector, ~] = eigs(M');
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!