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!