How can I obtain the eigenvector from a matrix?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
m1 = [7 3; 3 -1]
How can I obtain the eigenvector from this matrix?
0 comentarios
Respuestas (2)
William Rose
el 8 de Mayo de 2022
[V,D]=eig([7,3;3,-1])
V is the vector of eigenvectors and D is the diagonal matrix of eigenvalues.
0 comentarios
Friedel Hartmann
el 8 de Mayo de 2022
[Vectors, DiagonalWithValues] = eig(m1)
ListEvalues = diag(DiagonalWithValues)
0 comentarios
Ver también
Categorías
Más información sobre Operating on Diagonal Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!