How can I obtain the eigenvector from a matrix?
11 次查看(过去 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!