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!