From: Nils W. <nw...@me...> - 2005-05-30 15:27:20
|
Hi all, I am going to switch over to matplotlib. How can I convert the example with respect to matplotlib ? from scipy import * from scipy.xplt import * import gui_thread xplt.hold('on') for t in arange(0,10,0.1): xplt.plot(t,sin(t),'g+') xplt.pause(10) xplt.plot(t,cos(t),'ro') xplt.xlabel('Time t[s]') xplt.ylabel('Response') Nils |