How to solve an eigenvalue problem
Ältere Kommentare anzeigen
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?
Antworten (1)
Ameer Hamza
am 21 Mai 2018
Bearbeitet: Ameer Hamza
am 21 Mai 2018
[eigenVectors, eigenValues] = eig(A, B);
eigenValues will be a square matrix with Eigen values at its diagonal.
2 Kommentare
Md Ashikuzzaman
am 13 Jul. 2022
This comment is not useful. He has clealry mentioned a simple problem with value. Solve this if you know
Bruno Luong
am 13 Jul. 2022
Kategorien
Mehr zu Linear Algebra finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!