Re: [Matplotlib-users] imshow memory leak in pylab mode?

2010-07-20 Thread K . -Michael Aye
On 2010-07-16 18:48:48 +0200, Eric Firing said: Furthermore, deleting images from ax.images does not free memory : Maybe because ipython is keeping a reference to every AxesImage object that you make... Eric Well, maybe, but why does it not happen for John? His penultimate post

[Matplotlib-users] ft2font error on OSX 10.6 using py2app

2010-07-20 Thread Søren Nielsen
Hi, I'm creating a stand alone program on my mac with OSX 10.4 and it seems to work great on it. However, if I transfer my program to a snow leopard (10.6) mac, I get the error: File /Volumes/KINGSTON/Mac/RAW.app/Contents/Resources/__boot__.py, line 158, in module _run('RAW.py')

Re: [Matplotlib-users] Double y-axis with the same 0

2010-07-20 Thread Thøger Emil Juul Thorsen
One way is to specify the axes manually, e.g. setting: (with matyplotlib.pyplot importad as plt:) plt.axis([200, 500, -600, 600]) ...or whatever seems fitting for you, and do that on both of the y axes. That should align them nicely. On Sat, 2010-07-17 at 20:37 +0200, Daniele Padula wrote: Hi

[Matplotlib-users] Compile error

2010-07-20 Thread Tommy Grav
I am trying to compile matplotlib for ActiveState 2.7.0.1 - 64bit on mac os x. I have installed numpy 1.4.1 and scipy 0.8.0 from source. Compiling matplotlib using sudo make -f make.osx fetch deps mpl_build mpl_install works fine, but sudo python setup.py build yields the error below. Anyone

Re: [Matplotlib-users] imshow memory leak in pylab mode?

2010-07-20 Thread Eric Firing
On 07/19/2010 11:59 PM, K.-Michael Aye wrote: On 2010-07-16 18:48:48 +0200, Eric Firing said: Furthermore, deleting images from ax.images does not free memory : Maybe because ipython is keeping a reference to every AxesImage object that you make... Eric Well, maybe, but why does it not

Re: [Matplotlib-users] Compile error

2010-07-20 Thread Michael Droettboom
It looks as if you do not have the freetype development headers installed. Mike On 07/20/2010 01:00 PM, Tommy Grav wrote: I am trying to compile matplotlib for ActiveState 2.7.0.1 - 64bit on mac os x. I have installed numpy 1.4.1 and scipy 0.8.0 from source. Compiling matplotlib using sudo

Re: [Matplotlib-users] Cursor corruption with pyqt4 and a work-around.

2010-07-20 Thread Darren Dale
On Fri, Jun 18, 2010 at 7:50 AM, Darren Dale dsdal...@gmail.com wrote: On Thu, Jun 17, 2010 at 11:04 PM, David Smith davidhsmith...@gmail.com wrote: I have been developing an application using PyQt ant Matplotlib and encountered a problem with the mouse cursor shape being incorrect.  I

Re: [Matplotlib-users] Compile error

2010-07-20 Thread Tommy Grav
Sorry for the badly formatted email with broken threading (I realized that my matplotlib-user subscription was held due to my email bouncing earlier in the month. Re: [Matplotlib-users] Compile error From: Michael Droettboom md...@st... - 2010-07-20 17:17 It looks as if you do not

Re: [Matplotlib-users] Double y-axis with the same 0

2010-07-20 Thread Benjamin Root
Somehow, this doesn't seem very satisfying. It is almost accidental. There has to be a better way to do this. Ben Root 2010/7/20 Thøger Emil Juul Thorsen thoe...@fys.ku.dk One way is to specify the axes manually, e.g. setting: (with matyplotlib.pyplot importad as plt:) plt.axis([200,