Sandro Tosi schrieb:
> On Tue, May 19, 2009 at 12:54,  <sandeep.pra...@tcs.com> wrote:
>> Could you help me with plotting the columns of a matrix vs it's index in 1
>> figure. S if i have an m *n matrix i have to have n plots in 1 figure.
> 
> simply issue multiple times "plot()" with the give information, then
> call pyplot.show(); something like
It is not that complicated. matplotlib plots every column of a matrix as
separate line.

y = arange(25)
y.shape=(5,5)
plot(y)
# or with another
x = arange(10,15)
plot(x,y)
show()


hth Armin

------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to