Plotting Eigen vectors

20 views (last 30 days)
Raviteja
Raviteja on 27 Sep 2011
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 Comments
Raviteja
Raviteja on 28 Sep 2011
Tell me finally, is my code to draw eigen vectors is correct ?
Any other method ?
KSSV
KSSV on 13 Jan 2012
I think it depends what for are the Eigenvalues. What Eigen value analysis it is?

Sign in to comment.

Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!