Re: [matplotlib-devel] SF.net SVN: matplotlib: [4325] trunk/matplotlib/lib/matplotlib/axes.py

2007-11-15 Thread Eric Firing
Darren Dale wrote: > On Thursday 15 November 2007 06:12:32 pm Eric Firing wrote: >> [EMAIL PROTECTED] wrote: >>> Revision: 4325 >>> >>> http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4325&view=rev >>> Author: dsdale >>> Date: 2007-11-15 13:23:27 -0800 (Thu, 15 Nov 2007) >>> >

Re: [matplotlib-devel] SF.net SVN: matplotlib: [4325] trunk/matplotlib/lib/matplotlib/axes.py

2007-11-15 Thread Darren Dale
On Thursday 15 November 2007 06:12:32 pm Eric Firing wrote: > [EMAIL PROTECTED] wrote: > > Revision: 4325 > > > > http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4325&view=rev > > Author: dsdale > > Date: 2007-11-15 13:23:27 -0800 (Thu, 15 Nov 2007) > > > > Log Message: > > --

Re: [matplotlib-devel] SF.net SVN: matplotlib: [4325] trunk/matplotlib/lib/matplotlib/axes.py

2007-11-15 Thread Eric Firing
[EMAIL PROTECTED] wrote: > Revision: 4325 > http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4325&view=rev > Author: dsdale > Date: 2007-11-15 13:23:27 -0800 (Thu, 15 Nov 2007) > > Log Message: > --- > added npy.seterr(invalid='ignore') to beginning of axes.py, to sile

Re: [matplotlib-devel] Speed improvements on the branch

2007-11-15 Thread Michael Droettboom
Michael Droettboom wrote: John Hunter wrote: log_demo.py 1.769 2.011 0.242113% Here is another area where there is an important difference. Panning and zooming interactively with log scaling is much slower on the branch, presumably because you have to r

[matplotlib-devel] RFC on basemap changes

2007-11-15 Thread Jeff Whitaker
I've created a new basemap branch https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/trunk/toolkits/basemap-testing with lots of under-the-hood optimizations and code refactoring. The most significant change is that I now use the GEOS library (http://geos.refractions.net) to determine

[matplotlib-devel] Speed improvements on the branch

2007-11-15 Thread Michael Droettboom
Thought some of you may be interested to know that the speed on the branch is getting much better. Whereas earlier the branch was about 2x slower than the trunk, now most things are close to equal with the trunk speed-wise (with a few outliers for some things such as auto legends, quivers and

Re: [matplotlib-devel] Speed improvements on the branch

2007-11-15 Thread Michael Droettboom
John Hunter wrote: > On Nov 15, 2007 1:51 PM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > >> Very odd. I've been running my own very similar benchmark as I've been >> going, and the two code bases perform quite similarly. The branch >> continues to cache the markers in more or less the same

Re: [matplotlib-devel] Speed improvements on the branch

2007-11-15 Thread John Hunter
On Nov 15, 2007 1:51 PM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > Very odd. I've been running my own very similar benchmark as I've been > going, and the two code bases perform quite similarly. The branch > continues to cache the markers in more or less the same way as on the > trunk. He

Re: [matplotlib-devel] custom window titles

2007-11-15 Thread Darren Dale
On Thursday 15 November 2007 03:27:28 pm Darren Dale wrote: > I have a script that is generating many plots, and would like to create > some more informative window titles than "Figure 1" through "Figure 50". Is > there an easier way to do it than this, which is specific to backend_qt4? > > fig = f

[matplotlib-devel] custom window titles

2007-11-15 Thread Darren Dale
I have a script that is generating many plots, and would like to create some more informative window titles than "Figure 1" through "Figure 50". Is there an easier way to do it than this, which is specific to backend_qt4? fig = figure() fig.canvas.window().setWindowTitle('Hi') Thanks, Darren

Re: [matplotlib-devel] Speed improvements on the branch

2007-11-15 Thread Michael Droettboom
John Hunter wrote: > On Nov 15, 2007 12:53 PM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > >> Thought some of you may be interested to know that the speed on the >> branch is getting much better. Whereas earlier the branch was about 2x >> slower than the trunk, now most things are close to eq

Re: [matplotlib-devel] Speed improvements on the branch

2007-11-15 Thread John Hunter
On Nov 15, 2007 12:53 PM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > Thought some of you may be interested to know that the speed on the > branch is getting much better. Whereas earlier the branch was about 2x > slower than the trunk, now most things are close to equal with the trunk > speed