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 Comment

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

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

Products

Release

R2018b

Asked:

on 11 Feb 2019

Commented:

on 11 Feb 2019

Community Treasure Hunt

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

Start Hunting!