How to determine eigenvalues and eigenvectors?
78 次查看(过去 30 天)
显示 更早的评论
I have two matrices for example A and B. A=[3,9;3,5] and B=[2,0;0,8].
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? Please solve this problem using values and sharee the code from your monitor if possible.
0 个评论
采纳的回答
Bruno Luong
2022-7-13
编辑:Bruno Luong
2022-7-13
A=[3,9;3,5]
B=[2,0;0,8]
[V lambda] = eig(A,B,'vector')
% here is the first eigen vector with lambda(1) the corresponfing eigen
% value
x1 = V(:,1)
(A - lambda(1)*B)*x1 % small but not 0 due to finite precision floating point
% second eigen vector and second eigen value lambda(2)
x2 = V(:,2)
(A - lambda(2)*B)*x2 % small but not 0 due to finite precision floating point
0 个评论
更多回答(2 个)
Abderrahim. B
2022-7-13
编辑:Abderrahim. B
2022-7-13
Use eig
A = [3,9;3,5];
[eVecs, eVals] = eig(A)
Eigenvalues are the diagonal elements of eVals. To get them use diag
eValues = diag(eVals)
0 个评论
Chunru
2022-7-13
% doc eig for more details
A=[3,9;3,5]
B=[2,0;0,8]
[vA, dA] = eig(A)
[vB, dB] = eig(B)
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!