I have a regular 5x5 matrix and want to find the eigenvector, how do I do that?

 Akzeptierte Antwort

KSSV
KSSV am 23 Feb. 2022
Bearbeitet: KSSV am 23 Feb. 2022

0 Stimmen

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

Weitere Antworten (0)

Kategorien

Mehr zu Data Types finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 23 Feb. 2022

Bearbeitet:

am 23 Feb. 2022

Community Treasure Hunt

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

Start Hunting!

Translated by