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
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 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!