Eigen values Form : A*[phi] = beta*B*[phi]

1 回表示 (過去 30 日間)
Raphaël
Raphaël 2017 年 12 月 11 日
コメント済み: Raphaël 2017 年 12 月 14 日
Hi, I'm trying to find the eigen values and vectors of a two matrix system. Where A and B are two matrix that I have, beta is a constant (my eigen value that I'm searching) and [phi] is a vector (my eigen vector that I'm searching). I obtain the following equation : A*[phi] = beta*B*[phi] How do I, with matlab, find my eigen values and vectors? I'm not sure how to use the eig function. Thanks
  2 件のコメント
John D'Errico
John D'Errico 2017 年 12 月 11 日
Did you read the help for eig? Does it allow more than one argument?
Raphaël
Raphaël 2017 年 12 月 11 日
Yes but I'm not sure what he does with his second matrix. I'm also not sure how to extract the eigen vectors from such a problem.

サインインしてコメントする。

採用された回答

Christine Tobler
Christine Tobler 2017 年 12 月 12 日
[U, D] = eig(A, B);
gives you what you are looking for. All possible values of beta (eigenvalues of (A, B)) are on the diagonal of D, and the associated eigenvectors are the column vectors of U.
  1 件のコメント
Raphaël
Raphaël 2017 年 12 月 14 日
Thanks.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear Algebra についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by