How can I obtain the eigenvector from a matrix?
Ältere Kommentare anzeigen
m1 = [7 3; 3 -1]
How can I obtain the eigenvector from this matrix?
Antworten (2)
[V,D]=eig([7,3;3,-1])
V is the vector of eigenvectors and D is the diagonal matrix of eigenvalues.
Friedel Hartmann
am 8 Mai 2022
[Vectors, DiagonalWithValues] = eig(m1)
ListEvalues = diag(DiagonalWithValues)
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!