Re: [Matplotlib-users] ImportError: matplotlib/ft2font.so: undefined symbol: PyUnicodeUCS4_GetSize

2007-07-19 Thread mark starnes
Hi Mike. After another day of fiddling (including a new build of Python using --enable-uncode=ucs4) I've decided to return to my barely working installation and generate plots on a separate machine. I tried removing /usr/local and it caused more trouble than progress. I've got to get some result

[Matplotlib-users] getting list of interpolation functions...

2007-07-19 Thread fred
Hi, How can I get the list of the available interpolation functions used by imshow() ? TIA. Cheers, -- http://scipy.org/FredericPetit - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft Visual S

Re: [Matplotlib-users] getting list of interpolation functions...

2007-07-19 Thread Eric Firing
fred wrote: > Hi, > > How can I get the list of the available interpolation functions > used by imshow() ? > > TIA. > > Cheers, > ipython -pylab imshow? or ipython import pylab pylab.imshow? or python import pylab help(pylab.imshow) Eric -

Re: [Matplotlib-users] getting list of interpolation functions...

2007-07-19 Thread fred
Eric Firing a écrit : > fred wrote: >> Hi, >> >> How can I get the list of the available interpolation functions >> used by imshow() ? >> >> TIA. >> >> Cheers, >> Sorry, I was not clear. I want to get the list, not to know, in order to set it in a trait object, for instance, using something like

Re: [Matplotlib-users] getting list of interpolation functions...

2007-07-19 Thread Eric Firing
Fred, In image.py, the AxesImage.__init__() includes: self._interpd = { 'nearest' : _image.NEAREST, 'bilinear' : _image.BILINEAR, 'bicubic' : _image.BICUBIC, 'spline16' : _image.SPLINE16, 'spline36' : _image.SPLINE36,

Re: [Matplotlib-users] getting list of interpolation functions...

2007-07-19 Thread fred
Eric Firing a écrit : > Fred, > > In image.py, the AxesImage.__init__() includes: > >self._interpd = { > 'nearest' : _image.NEAREST, > 'bilinear' : _image.BILINEAR, > 'bicubic' : _image.BICUBIC, > 'spline16' : _image.SPLINE16, >

Re: [Matplotlib-users] getting list of interpolation functions...

2007-07-19 Thread Eric Firing
fred wrote: > Eric Firing a écrit : >> Fred, >> >> In image.py, the AxesImage.__init__() includes: >> >>self._interpd = { >> 'nearest' : _image.NEAREST, >> 'bilinear' : _image.BILINEAR, >> 'bicubic' : _image.BICUBIC, >> 'spline16' : _image.S

Re: [Matplotlib-users] Irregular Dates

2007-07-19 Thread Tom Haddon
On Wed, 2007-07-18 at 20:02 -0500, John Hunter wrote: > On 7/18/07, Tom Haddon <[EMAIL PROTECTED]> wrote: > > I think you mean it makes no assumption about the intervals between my > > dates? If so, I must be missing something. How am I supposed to pass the > > data to the plot_date function? If I

[Matplotlib-users] [Fwd: Re: Irregular Dates]

2007-07-19 Thread Tom Haddon
Hmm, looks like I was just missing a third argument '-' from the plot_date function. Thanks, Tom Forwarded Message From: Tom Haddon <[EMAIL PROTECTED]> To: John Hunter <[EMAIL PROTECTED]> Cc: matplotlib-users@lists.sourceforge.net Subject: Re: [Matplotlib-users] Irregular Dates

Re: [Matplotlib-users] getting list of interpolation functions...

2007-07-19 Thread fred
Eric Firing a écrit : > > I don't understand; it seems to me that all you need is > _interpd.keys(), and since this is specific to AxesImage, it should be > an attribute of that class, say AxesImage.interpolations. You can't > add interpolation methods, and they have no meaning outside AxesImag

[Matplotlib-users] text element mixed coordinate systems

2007-07-19 Thread Matthew Auger
Hi...I'm interested in plotting text elements with the X value in data coordinates and the Y value in axis coordinates (in this way I could plot labels at the top of the axes that would respond to zooming/panning in the X-direction but would *always* remain at the top of the axes as long as the