Get Symbolic Left Eigenvectors

22 visualizaciones (últimos 30 días)
Dennis Nikitaev
Dennis Nikitaev el 12 de Abr. de 2020
Comentada: 阳 张 el 28 de Feb. de 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.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 12 de Abr. de 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 comentario
阳 张
阳 张 el 28 de Feb. de 2023
Thank you very much, this works!

Iniciar sesión para comentar.

Más respuestas (1)

Dennis Nikitaev
Dennis Nikitaev el 12 de Abr. de 2020
Thank you very much, this works!

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by