Re: [Matplotlib-users] Closing a pyplot window under MSWindows and under Linux

2010-04-04 Thread Alan G Isaac
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

Re: [Matplotlib-users] Closing a pyplot window under MSWindows and under Linux

2010-04-04 Thread Enzo Michelangeli
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

Re: [Matplotlib-users] Closing a pyplot window under MSWindows and under Linux

2010-04-03 Thread Alan G Isaac
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

[Matplotlib-users] Closing a pyplot window under MSWindows and under Linux

2010-04-03 Thread Enzo Michelangeli
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