Matrix Operations using MATLAB

3 views (last 30 days)
Thomas Lu
Thomas Lu on 11 Feb 2019
Commented: Thomas Lu on 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 Comment
Geoff Hayes
Geoff Hayes on 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.

Sign in to comment.

Accepted Answer

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

Sign in to comment.

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!