How can I obtain the eigenvector from a matrix?

1 visualización (últimos 30 días)
Jonas Morgner
Jonas Morgner el 8 de Mayo de 2022
Respondida: Friedel Hartmann el 8 de Mayo de 2022
m1 = [7 3; 3 -1]
How can I obtain the eigenvector from this matrix?

Respuestas (2)

William Rose
William Rose el 8 de Mayo de 2022
[V,D]=eig([7,3;3,-1])
V = 2×2
0.3162 -0.9487 -0.9487 -0.3162
D = 2×2
-2 0 0 8
V is the vector of eigenvectors and D is the diagonal matrix of eigenvalues.

Friedel Hartmann
Friedel Hartmann el 8 de Mayo de 2022
[Vectors, DiagonalWithValues] = eig(m1)
ListEvalues = diag(DiagonalWithValues)

Categorías

Más información sobre Operating on Diagonal Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by