How can I obtain the eigenvector from a matrix?
이전 댓글 표시
m1 = [7 3; 3 -1]
How can I obtain the eigenvector from this matrix?
답변 (2개)
[V,D]=eig([7,3;3,-1])
V is the vector of eigenvectors and D is the diagonal matrix of eigenvalues.
Friedel Hartmann
2022년 5월 8일
[Vectors, DiagonalWithValues] = eig(m1)
ListEvalues = diag(DiagonalWithValues)
카테고리
도움말 센터 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!