Re: [Matplotlib-users] is pcolor_classic needed?

2006-06-06 Thread Robert Hetland
+1 for removing pcolor_classic. On Jun 6, 2006, at 1:49 PM, Eric Firing wrote: > In the spirit of cleaning up and simplifying mpl, I would like to know > whether anyone is still using pcolor_classic, and if so, why? Does it > have any advantages over pcolor or pcolormesh? > > Thanks. > > Eric >

Re: [Matplotlib-users] How to close a figure ?

2006-06-06 Thread Clovis Goldemberg
This is a previously reported problem, related to: a) closing figures (garbage collection) b) memory usage issues (and memory leaks, which depend on the selected backend) I adapted the script just provided by John Hunter to show memory usage at each new figure: import sys import pylab import o

[Matplotlib-users] is pcolor_classic needed?

2006-06-06 Thread Eric Firing
In the spirit of cleaning up and simplifying mpl, I would like to know whether anyone is still using pcolor_classic, and if so, why? Does it have any advantages over pcolor or pcolormesh? Thanks. Eric ___ Matplotlib-users mailing list Matplotlib-us

[Matplotlib-users] linear_least_squares: OverFlow error or flapack.error

2006-06-06 Thread massimo sandal
Hi, I'm trying to do a simple linear least squares fit of some data in an application. The relevant code runs about as follows, following closely the example found on http://mail.python.org/pipermail/python-list/2006-March/331693.html - import matplotlib.numerix as nx contact_x_poi

[Matplotlib-users] Customizing Toolbar

2006-06-06 Thread JUAN ERNESTO FLORES BELTRAN
Hi you all I am coding a GUI application python/matplotlib/basemap based on. I have imported NavigationToolbar as follows: from matplotlib.backends.backend_gtk import NavigationToolbar2GTK as NavigationToolbar This shows the following five buttons: 1.- Reset Original View 2.- Back to Previous

Re: [Matplotlib-users] How to close a figure ?

2006-06-06 Thread John Hunter
> "Steve" == Steve Schmerler <[EMAIL PROTECTED]> writes: Steve> leau2001 wrote: >> I made some figure in a loop and i want to close after the >> figure show. >> Steve> Not absolutely sure what you mean, but to produce some Steve> plots and save them in a loop I do

Re: [Matplotlib-users] How to close a figure ?

2006-06-06 Thread Alan G Isaac
On Tue, 06 Jun 2006, apparently wrote: > I made some figure in a loop and i want to close after the figure show. Are you using TkAgg? Then it should have a close button. Use it. By using show() you entered the Tkinter mainloop, so you cannot close it from the console. (Or so I believe.) Cheers

Re: [Matplotlib-users] How to close a figure ?

2006-06-06 Thread Steve Schmerler
leau2001 wrote: > I made some figure in a loop and i want to close after the figure show. > Not absolutely sure what you mean, but to produce some plots and save them in a loop I do f = figure() for i in range(..): plot(...) savefig(...) f.clf() # clear figure for re-use

Re: [Matplotlib-users] TextWithDash broken

2006-06-06 Thread Stefan van der Walt
On Tue, Jun 06, 2006 at 12:32:00PM +0200, Stefan van der Walt wrote: > In current SVN, line 1164 of text.py (__init__ of TextWithDash) refers > to "renderer" which is not defined. This breaks almost any > operation. Eek! Local changes in my repository. Please disregard the previous message. *bl

[Matplotlib-users] TextWithDash broken

2006-06-06 Thread Stefan van der Walt
Hi, In current SVN, line 1164 of text.py (__init__ of TextWithDash) refers to "renderer" which is not defined. This breaks almost any operation. Regards Stéfan ___ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sou

[Matplotlib-users] How to close a figure ?

2006-06-06 Thread leau2001
I made some figure in a loop and i want to close after the figure show. thx lo ___ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users