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
2018년 5월 21일
편집: Ameer Hamza
2018년 5월 21일
[eigenVectors, eigenValues] = eig(A, B);
eigenValues will be a square matrix with Eigen values at its diagonal.
댓글 수: 2
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
2022년 7월 13일
카테고리
도움말 센터 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!