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 个评论

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

请先登录,再进行评论。

 采纳的回答

KSSV
KSSV 2019-2-11
编辑:KSSV 2019-2-11
Read about eig
A = magic(6) ;
[v,d] = eig(A) ;

1 个评论

how about the matrix Q? I am not quite sure after I read the article. Thanks a ton!

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Operating on Diagonal Matrices 的更多信息

产品

版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by