필터 지우기
필터 지우기

Get Symbolic Left Eigenvectors

조회 수: 8 (최근 30일)
Daria Nikitaeva
Daria Nikitaeva 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개)

Daria Nikitaeva
Daria Nikitaeva 2020년 4월 12일
Thank you very much, this works!

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by