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

  import matplotlib.pyplot as plt

  for j in range(columns of matrix):
      plt.plot(<here put the X>, <here put the Y>)

  plt.show()

Regards,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi

------------------------------------------------------------------------------
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