help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: matrix graphs


From: dastew
Subject: RE: matrix graphs
Date: Mon, 11 May 2009 14:17:46 +0000



> Subject: Re: matrix graphs
> From: address@hidden
> To: address@hidden
> Date: Mon, 11 May 2009 16:50:03 +0300
>
> On Sun, 2009-05-10 at 23:50 +0300, Oguz Yarimtepe wrote:
> > Hi,
> >
> > I am createing a plot as below:
> >
> > [a,b,c,d]=princomp(x);
> > plot(b)
> >
> > The resulted graohs is here: http://tinypic.com/view.php?pic=19kl1&s=5
> >
> > But i just want to plot the lines which are in blue. How can is make it?
> >
>
> Maybe i should be more clear about it. Lets say b is a 11x48 matrix.
> When i run plot(b), i get a 2d line graph each has a different color.
> What should i do to just show the line with a spesific color?
>
>
> --
> Oguz Yarimtepe
> http://www.loopbacking.info
>
>


you could do

print(b( :,3))  this will print all the data in the 3rd col.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]