How can I obtain the eigenvector from a matrix?

조회 수: 3 (최근 30일)
Jonas Morgner
Jonas Morgner 2022년 5월 8일
답변: Friedel Hartmann 2022년 5월 8일
m1 = [7 3; 3 -1]
How can I obtain the eigenvector from this matrix?

답변 (2개)

William Rose
William Rose 2022년 5월 8일
[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 2022년 5월 8일
[Vectors, DiagonalWithValues] = eig(m1)
ListEvalues = diag(DiagonalWithValues)

카테고리

Help CenterFile Exchange에서 Operating on Diagonal Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by