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일

0 개 추천

Right eigen vectors of are the left eigen vectors of A.
[right_eig_vectors, eig_values] = eig(A);
[left_eig_vectors, ~] = eig(A.');

추가 답변 (1개)

Daria Nikitaeva
Daria Nikitaeva 2020년 4월 12일

0 개 추천

Thank you very much, this works!

카테고리

제품

릴리스

R2018b

질문:

2020년 4월 12일

댓글:

2023년 2월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by