Eigen values Form : A*[phi] = beta*B*[phi]
1 次查看(过去 30 天)
显示 更早的评论
Hi, I'm trying to find the eigen values and vectors of a two matrix system. Where A and B are two matrix that I have, beta is a constant (my eigen value that I'm searching) and [phi] is a vector (my eigen vector that I'm searching). I obtain the following equation : A*[phi] = beta*B*[phi] How do I, with matlab, find my eigen values and vectors? I'm not sure how to use the eig function. Thanks
2 个评论
采纳的回答
Christine Tobler
2017-12-12
[U, D] = eig(A, B);
gives you what you are looking for. All possible values of beta (eigenvalues of (A, B)) are on the diagonal of D, and the associated eigenvectors are the column vectors of U.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!