How to determine eigenvalues and eigenvectors?
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (2)
Abderrahim. B
le 13 Juil 2022
Modifié(e) : Abderrahim. B
le 13 Juil 2022
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)
% doc eig for more details
A=[3,9;3,5]
B=[2,0;0,8]
[vA, dA] = eig(A)
[vB, dB] = eig(B)
Catégories
En savoir plus sur Linear Algebra dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!