|
From: John H. <jd...@gm...> - 2008-01-07 21:54:13
|
On Jan 7, 2008 1:43 PM, Rich Shepard <rsh...@ap...> wrote: > On Mon, 7 Jan 2008, Darren Dale wrote: > > > you can call hold(True) so each call to plot() adds a new curve to the axes. > > Darren, > > Excellent! Where is this documented, please? I did not see it when I > looked in the docs. The function is document http://matplotlib.sourceforge.net/matplotlib.pyplot.html#-hold and the usage in the "Simple Plots" Section 3.1 of the User's Guide at http://matplotlib.sourceforge.net/users_guide_0.91.2svn.pdf . The hold functionality is part of the state-machine interface inherited from matlab, where plotting commands are targets to the current axes in the current figure, and overbplotting is controlled by the "hold" state. Se also, "ishold" JDH |