Matrix Operations using MATLAB

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 Commento

Yu - see eigenvalues and eigenvectors for some details. If you have already looked at this, then please describe what you have attempted so far.

Accedi per commentare.

 Risposta accettata

KSSV
KSSV il 11 Feb 2019
Modificato: KSSV il 11 Feb 2019
Read about eig
A = magic(6) ;
[v,d] = eig(A) ;

1 Commento

Thomas Lu
Thomas Lu il 11 Feb 2019
how about the matrix Q? I am not quite sure after I read the article. Thanks a ton!

Accedi per commentare.

Più risposte (0)

Categorie

Prodotti

Release

R2018b

Richiesto:

il 11 Feb 2019

Commentato:

il 11 Feb 2019

Community Treasure Hunt

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

Start Hunting!

Translated by