Get Symbolic Left Eigenvectors
23 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Daria Nikitaeva
am 12 Apr. 2020
Kommentiert: 阳 张
am 28 Feb. 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.
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 12 Apr. 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 Kommentar
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!