On 4/4/2010 3:15 AM, Enzo Michelangeli wrote:
> ion() doesn't do what I need: it just forces a draw()
> after every pyplot command allowing animated plots. Instead, I want the
> program
> to draw and show a complete plot, then pause allowing me to interact with
> its
> window (e.g., to pan, zoo
Alan G Isaac writes:
>
> On 4/3/2010 11:19 PM, Enzo Michelangeli wrote:
> > multiple show() functionality is important for many users (see
> > e.g.
> >
http://www.mail-archive.com/matplotlib-users-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
public.gmane.org/msg13099.html
> >
>
> http://matplotlib.sour
On 4/3/2010 11:19 PM, Enzo Michelangeli wrote:
> multiple show() functionality is important for many users (see
> e.g.
> http://www.mail-archive.com/matplotlib-users@lists.sourceforge.net/msg13099.html
>
http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.ion
hth,
Alan Isa
Dear all,
Consider the following short program:
from matplotlib.pyplot import title, show
for i in xrange(3):
title(i+1)
print "window No. "+str(i+1)+" was closed"
show()
If I run it under Windows XP, at each show() the program displays a window and
blocks; if I close the window by c