Get Symbolic Left Eigenvectors

15 vues (au cours des 30 derniers jours)
Daria Nikitaeva
Daria Nikitaeva le 12 Avr 2020
Commenté : 阳 张 le 28 Fév 2023
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.

Réponse acceptée

Ameer Hamza
Ameer Hamza le 12 Avr 2020
Right eigen vectors of are the left eigen vectors of A.
[right_eig_vectors, eig_values] = eig(A);
[left_eig_vectors, ~] = eig(A.');
  1 commentaire
阳 张
阳 张 le 28 Fév 2023
Thank you very much, this works!

Connectez-vous pour commenter.

Plus de réponses (1)

Daria Nikitaeva
Daria Nikitaeva le 12 Avr 2020
Thank you very much, this works!
  1 commentaire
Ameer Hamza
Ameer Hamza le 12 Avr 2020
Glad to be of help.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by