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 Exchange에서 Linear 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