How to find an eigenvector

14 次查看(过去 30 天)
I have a regular 5x5 matrix and want to find the eigenvector, how do I do that?

采纳的回答

KSSV
KSSV 2022-2-23
编辑:KSSV 2022-2-23
Read about the function eig.
A = magic(5) ;
[V,D] = eig(A) ;
vec = V
vec = 5×5
-0.4472 0.0976 -0.6330 0.6780 -0.2619 -0.4472 0.3525 0.5895 0.3223 -0.1732 -0.4472 0.5501 -0.3915 -0.5501 0.3915 -0.4472 -0.3223 0.1732 -0.3525 -0.5895 -0.4472 -0.6780 0.2619 -0.0976 0.6330
val = diag(D)
val = 5×1
65.0000 -21.2768 -13.1263 21.2768 13.1263

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Types 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by