How can I obtain the eigenvector from a matrix?
조회 수: 3 (최근 30일)
이전 댓글 표시
m1 = [7 3; 3 -1]
How can I obtain the eigenvector from this matrix?
댓글 수: 0
답변 (2개)
William Rose
2022년 5월 8일
[V,D]=eig([7,3;3,-1])
V is the vector of eigenvectors and D is the diagonal matrix of eigenvalues.
댓글 수: 0
Friedel Hartmann
2022년 5월 8일
[Vectors, DiagonalWithValues] = eig(m1)
ListEvalues = diag(DiagonalWithValues)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Operating on Diagonal Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!