Azzera filtri
Azzera filtri

Find Eigenvalues without function "eig"

48 visualizzazioni (ultimi 30 giorni)
Jaycie Bishop
Jaycie Bishop il 11 Ott 2020
Modificato: KSSV il 12 Ott 2020
I performed this by hand and know that the eigenvalues are 10, -1, and 4. But clearly that's not what I got... Any help would be nice.

Risposte (2)

KSSV
KSSV il 11 Ott 2020
Modificato: KSSV il 12 Ott 2020
syms x
A = [10 0 0; 1 -3 -7 ; 0 2 6] ;
p = det(A-eye(3)*x) % this is the characteristic equation
val = solve(p) % solve this for roots
The polynomial equation, you get is:
poly =
Using roots:
p = [-1 13 -26 -40] ;
val = roots(p)

Paul
Paul il 11 Ott 2020
roots(poly(A))
Though I’m sure one could come with an A for which this approach will fail due to numerical accuracy issues. In which case converting A to a syms object as in another answer may be preferred.

Community Treasure Hunt

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

Start Hunting!

Translated by