right eigenvector corresponding to an eigenvalue 1

 채택된 답변

Sebastian Castro
Sebastian Castro 2016년 1월 24일

3 개 추천

As the documentation for the eig function says:
[V,D] = eig(A) returns diagonal matrix D of eigenvalues and matrix V whose columns are the corresponding right eigenvectors, so that A*V = V*D.
So, if you use the command above, for example
  • D(2,2) would give you the 2nd eigenvalue
  • V(:,2) would give you the 2nd eigenvector
- Sebastian

댓글 수: 2

So how would I get the left eigenvector of the matrix?
Also from the documentation for eig (hint: you should look at it!)
[V,D,W] = eig(A) also returns full matrix W whose columns are the corresponding left eigenvectors, so that W'*A = D*W'.
- Sebastian

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Linear Algebra에 대해 자세히 알아보기

질문:

2016년 1월 23일

댓글:

2016년 1월 25일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by