Plotting Eigen vectors
古いコメントを表示
I have a real symetric matrix A
>> A=[1 7 3;7 4 -5;3 -5 6];
I found its eigen vectors
>> [Evec,Eval]=eig(A);
I want to plot eigen vectors in 3D.
so that I have written like this
vlabs={'X ','Y ','Z '};
biplot(7*EVec(:,1:end),'varlabels',vlabs)
% I scaled to 7 look bigger vectors
Is this the write way? Is there any way to plot eigen vectors better?
4 件のコメント
bym
2011 年 9 月 27 日
Your syntax biplot(7*Evec(:,1:end),'varlabels',vlabs) could just as easily be biplot(7*Evec,'varlabels',vlabs)
Jan
2011 年 9 月 27 日
What is "better"?
Raviteja
2011 年 9 月 28 日
KSSV
2012 年 1 月 13 日
I think it depends what for are the Eigenvalues. What Eigen value analysis it is?
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Dynamic System Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!