Re: [Matplotlib-users] Plot a matrix in one command?

2009-10-27 Thread Gökhan Sever
2009/10/27 Piter_ > Hi all. > I have a matrix M: > First column is X ans the rest are Ys. Lets say 100 of them (1000 > sometimes). > So far I can plot it like > plot(M(:,1), M(:,2),M(:,1),M(:,3)... and so on and so on) > Is there any possibility to do it in matlab way? Like: > You can't index a

Re: [Matplotlib-users] Plot a matrix in one command?

2009-10-27 Thread Scott Sinclair
>2009/10/27 Piter_ : > I have a matrix M: > First column is X ans the rest are Ys. Lets say  100 of them (1000 > sometimes). > So far I can plot it like > plot(M(:,1), M(:,2),M(:,1),M(:,3)... and so on and so on) > Is there any possibility to do it in matlab way? Like: > > plot(M(:,1),M(:,2:end))

[Matplotlib-users] Plot a matrix in one command?

2009-10-27 Thread Piter_
Hi all. I have a matrix M: First column is X ans the rest are Ys. Lets say 100 of them (1000 sometimes). So far I can plot it like plot(M(:,1), M(:,2),M(:,1),M(:,3)... and so on and so on) Is there any possibility to do it in matlab way? Like: plot(M(:,1),M(:,2:end)) This is main thing stopping