How to solve an eigenvalue problem

I have two matrices A and B. A=[2,5;3,6] and B=[5,0;0,7]. They are part of an eigenvalue problem of the form: (A-(lambda)B)x=0. How do I find the eigenvalues and vectors using matlab?

回答 (1 件)

Ameer Hamza
Ameer Hamza 2018 年 5 月 21 日
編集済み: Ameer Hamza 2018 年 5 月 21 日

1 投票

See eig(). You can find them like this
[eigenVectors, eigenValues] = eig(A, B);
eigenValues will be a square matrix with Eigen values at its diagonal.

2 件のコメント

Md Ashikuzzaman
Md Ashikuzzaman 2022 年 7 月 13 日
This comment is not useful. He has clealry mentioned a simple problem with value. Solve this if you know
Bruno Luong
Bruno Luong 2022 年 7 月 13 日
@Md Ashikuzzaman why @Ameer Hamza answer is not useful? It rightly answer OP question.

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

カテゴリ

ヘルプ センター および File ExchangeLinear Algebra についてさらに検索

タグ

質問済み:

2018 年 5 月 21 日

コメント済み:

2022 年 7 月 13 日

Community Treasure Hunt

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

Start Hunting!

Translated by