Plot in MatPlotLib

2013-09-05 Thread Chandru Rajendran
Hi all, I have written the types to plot in Matplotlib. #Usage Type 1 plt.plot(t,s) plt.show() #Usage type 2 fig=plt.figure() ax=fig.add_subplot(111) ax.plot(t,s) plt.show() I want difference between these types and other ways in which we can use plot. Thanks & Regards, Cha

Re: Several images onto one 2D-plot in matplotlib?

2007-04-12 Thread Alan Isaac
http://matplotlib.sourceforge.net/screenshots.html esp http://matplotlib.sourceforge.net/screenshots/axes_demo.py hth, Alan Isaac -- http://mail.python.org/mailman/listinfo/python-list

Several images onto one 2D-plot in matplotlib?

2007-04-12 Thread karsten . borgwardt
Hi! I have got the following problem: I want to plot a 2D-function in matplotlib, and then I want to insert (small) png-Images at certain locations within the plot. Any suggestions how to do that? Thanks a lot! yggobk -- http://mail.python.org/mailman/listinfo/python-list