Plotting Eigen vectors
5 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!