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!