How can I generate the left eigenvector for the generalized eigenvalue problem in MATLAB 7.11 (R2010b)?

조회 수: 3 (최근 30일)
I am interested in calculating the left eigenvector of the generalized
eigenvalue problem but am not sure on how to do that in MATLAB.

채택된 답변

MathWorks Support Team
MathWorks Support Team 2011년 3월 30일
In order to calculate the left eigenvector of the generalized eigenvalue problem use the function QZ with six output arguments as follows:
[AA,BB,Q,Z,V,W] = qz(A,B)
The eigenvalues are
diag(AA)./diag(BB)
provided that none of these ratios is effectively 0/0. The columns of V are the right eigenvectors.
The rows of W' are the left eigenvectors.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

제품


릴리스

R2010b

Community Treasure Hunt

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

Start Hunting!

Translated by