Matrix Operations using MATLAB

3 Ansichten (letzte 30 Tage)
Thomas Lu
Thomas Lu am 11 Feb. 2019
Kommentiert: Thomas Lu am 11 Feb. 2019
Let A = magic(6)
How to Find eigenvectors of A corresponding to the eigenvalue of A with the largest absolute value?
and how to find Q such that Q1AQ is diagonal?
Million Thanks!
  1 Kommentar
Geoff Hayes
Geoff Hayes am 11 Feb. 2019
Yu - see eigenvalues and eigenvectors for some details. If you have already looked at this, then please describe what you have attempted so far.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

KSSV
KSSV am 11 Feb. 2019
Bearbeitet: KSSV am 11 Feb. 2019
Read about eig
A = magic(6) ;
[v,d] = eig(A) ;
  1 Kommentar
Thomas Lu
Thomas Lu am 11 Feb. 2019
how about the matrix Q? I am not quite sure after I read the article. Thanks a ton!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by