right eigenvector corresponding to an eigenvalue 1

9 ビュー (過去 30 日間)
A123456
A123456 2016 年 1 月 23 日
コメント済み: Sebastian Castro 2016 年 1 月 25 日
How can I find the eigenvector corresponding to the eigenvalue

採用された回答

Sebastian Castro
Sebastian Castro 2016 年 1 月 24 日
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 件のコメント
A123456
A123456 2016 年 1 月 25 日
So how would I get the left eigenvector of the matrix?
Sebastian Castro
Sebastian Castro 2016 年 1 月 25 日
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 件)

カテゴリ

Help Center および File ExchangeLinear Algebra についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by