[Matplotlib-users] problem with ghostscript

2006-10-23 Thread Stefan van der Walt
Hi, I am trying to generate graphs using text.usetex : True ps.usedistiller : xpdf Unfortunately, when running import pylab as P P.plot([10],[10]) P.savefig('test.eps') I get an error message: File /home/stefan//lib/python2.4/site-packages/matplotlib/backends/backend_ps.py, line 1412, in

Re: [Matplotlib-users] problem with ghostscript

2006-10-23 Thread Stefan van der Walt
On Mon, Oct 23, 2006 at 01:28:36PM -0400, Darren Dale wrote: Hi Stefan, On Monday 23 October 2006 11:17, Stefan van der Walt wrote: I am trying to generate graphs using text.usetex : True ps.usedistiller : xpdf [...] I can't reproduce the problem here, using xpdf 3.01 (although

Re: [Matplotlib-users] problem with axes size

2006-10-16 Thread Stefan van der Walt
On Sun, Oct 15, 2006 at 09:31:32PM -0200, Flavio Coelho wrote: Hi, I am having a strange behavior with the size of axes in imshow. the attached code worked fine with an older version of Pylab, but with the latest SVN, the plots are appearing very narrow (vertically)in the middle of the

[Matplotlib-users] markercolor broken

2006-10-08 Thread Stefan van der Walt
Hi all The marker behaviour changed in r2790 | nnemec | 2006-09-29 11:46:57 +0200 (Fri, 29 Sep 2006) | 1 line reworked linestyle and markercolor handling For example, try the following:

Re: [Matplotlib-users] How to transpose a matrix

2006-10-05 Thread Stefan van der Walt
On Thu, Oct 05, 2006 at 03:50:42PM -0400, [EMAIL PROTECTED] wrote: Is there any easy fucntion to do that? Thanks You mean like x.transpose() or x.T? - Take Surveys. Earn Cash. Influence the Future of IT Join

Re: [Matplotlib-users] line styles with hollow circles?

2006-09-28 Thread Stefan van der Walt
On Thu, Sep 28, 2006 at 08:24:44PM +0200, Christian Meesters wrote: I'd like to plot experimental data points with fitted data through it. This time best would be to plot hollow circles for the experimental data. Pretty much like literal 'o's (except, of course, that passing 'o' results in

Re: [Matplotlib-users] Legend outside plot

2006-08-18 Thread Stefan van der Walt
On Thu, Aug 17, 2006 at 09:48:58PM -0700, Brendan Barnwell wrote: [I accidentally sent this message privately to the sender before. . . why doesn't this list set the Reply-To header to the list?] I don't think mailing lists should change the reply-to:

[Matplotlib-users] plot swaps axes specified with extent

2006-07-27 Thread Stefan van der Walt
Hi all, I have a script that reads in mouse-click coordinates from an image. I noticed that, with image extents specified, the axes flip whenever I plot to them. This snippet demonstrates the behaviour I see: # -- START -- import pylab as P import numpy as N # Generate test pattern x =

Re: [Matplotlib-users] Compiled against version 90709 of C-API... numpy is 90907

2006-07-14 Thread Stefan van der Walt
On Thu, Jul 13, 2006 at 08:21:14PM -0400, Darren Dale wrote: On Thursday 13 July 2006 8:08 pm, Brian Wilfley wrote: I'm afraid I mixed and matched inappropriately withe the enthought 2.4 beta 3 and matplotlibe 0.87.4 py2.4 pairing. Any thoughts? RuntimeError: module compiled against

Re: [Matplotlib-users] plot command: more flexible argument handling

2006-07-13 Thread Stefan van der Walt
On Wed, Jul 12, 2006 at 01:19:41PM -1000, Eric Firing wrote: To summarize, the options seem to be: 1) Leave plot argument parsing alone. 2) Accept an Nx2 array in place of a pair of arguments containing x and y. 3) Implement the Matlab model. 4) Implement the Matlab model, but taking rows

Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-13 Thread Stefan van der Walt
On Thu, Jul 13, 2006 at 07:45:37AM -0500, John Hunter wrote: Eric == Eric Firing [EMAIL PROTECTED] writes: Eric To reply more directly to your proposal now that I have Eric thought about it more: although I see the logic in it, I Eric don't see much gain from your Nx2 idea; it not

Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-12 Thread Stefan van der Walt
On Tue, Jul 11, 2006 at 10:53:59PM -0400, Charlie Moad wrote: 2006-06-22 Added support for numerix 2-D arrays as alternatives to a sequence of (x,y) tuples for specifying paths in collections, quiver, contour, pcolor, transforms. Fixed contour bug involving

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. *blush