Get Symbolic Left Eigenvectors

24 ビュー (過去 30 日間)
Dennis Nikitaev
Dennis Nikitaev 2020 年 4 月 12 日
コメント済み: 阳 张 2023 年 2 月 28 日
Hello,
I am trying to get the left eigenvectors of a symbolic matrix. I tried using [V,D,W]=eig(A) but that gives me indices for W as said in the help file. My understanding is that the left eigenvectors solve the following equation: W'*A=D*W' but when I put that into solve, it doesn't do anything. Can someone please help?
Thank you.

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 4 月 12 日
Right eigen vectors of are the left eigen vectors of A.
[right_eig_vectors, eig_values] = eig(A);
[left_eig_vectors, ~] = eig(A.');
  1 件のコメント
阳 张
阳 张 2023 年 2 月 28 日
Thank you very much, this works!

サインインしてコメントする。

その他の回答 (1 件)

Dennis Nikitaev
Dennis Nikitaev 2020 年 4 月 12 日
Thank you very much, this works!
  1 件のコメント
Ameer Hamza
Ameer Hamza 2020 年 4 月 12 日
Glad to be of help.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by