Re: [Matplotlib-users] Problems with building from source on windows with MinGW

2006-12-26 Thread Edin Salkovic
On 12/26/06, John Hunter <[EMAIL PROTECTED]> wrote: > Did you rm -rf your build dir (and sometimes site-packages/matplotlib) > before rebuilding. This is usually the cause of such crashes. Yes I have. I even reinstalled windows (not related to matplotlib :), and I had the same problems. I'll ex

Re: [Matplotlib-users] histogram bug

2006-12-26 Thread Eric Firing
The problem is still present in svn. Thanks for the reminder. Eric Diwaker Gupta wrote: The following minimal script reveals a rendering problem with displaying a histogram on a log vertical axis. > > Has this been resolved yet? I'm running Matplotlib 0.87.5-2.2 on > Debian Unstable.

Re: [Matplotlib-users] Filled Curves

2006-12-26 Thread Alan G Isaac
On Tue, 26 Dec 2006, Eric Firing apparently wrote: > 1) edgecolor=facecolor is not the same as not drawing the > edge; it leads to artifacts that can be very damaging. Strongly agree! Cheers, Alan Isaac - Take Surveys

Re: [Matplotlib-users] histogram bug

2006-12-26 Thread Diwaker Gupta
> >> The following minimal script reveals a rendering problem with > >> displaying a histogram on a log vertical axis. Has this been resolved yet? I'm running Matplotlib 0.87.5-2.2 on Debian Unstable. I try to run the following script: from pylab import * hist(rand(100), 20) ax = gca() ax.set_ysc

Re: [Matplotlib-users] surface_create_for_array() argument 1 must be array, not numpy.ndarray

2006-12-26 Thread Steve Chaplin
On Sun, 2006-12-24 at 22:43 -0800, [EMAIL PROTECTED] wrote: > hi, > TypeError happened when I ran contour_demo.py -dGtkCairo,Can > anybody > tell me the reason? > TypeError: surface_create_for_array() argument 1 must be > array, not > numpy.n

Re: [Matplotlib-users] Printing with gtk-2.10

2006-12-26 Thread Steve Chaplin
On Wed, 2006-12-20 at 04:27 -0800, [EMAIL PROTECTED] wrote: > Hi there! > > I implemented a Print method with gtk-2.10 PrintOperations... > It was not > easy, because of some transformations issues inside > matplotlib... > > My wish

Re: [Matplotlib-users] Filled Curves

2006-12-26 Thread Eric Firing
John Hunter wrote: >> "Eric" == Eric Firing <[EMAIL PROTECTED]> writes: > Eric> We did decide to make linewidth=0 suppress drawing the line, > Eric> and this is in the ps backend. Most likely it is not in all > Eric> backends, but it is in pdf, svg, and agg as well as ps. In > >

Re: [Matplotlib-users] Filled Curves

2006-12-26 Thread John Hunter
> "Eric" == Eric Firing <[EMAIL PROTECTED]> writes: Eric> We did decide to make linewidth=0 suppress drawing the line, Eric> and this is in the ps backend. Most likely it is not in all Eric> backends, but it is in pdf, svg, and agg as well as ps. In Would it not be better to catc

Re: [Matplotlib-users] Filled Curves

2006-12-26 Thread Eric Firing
John Hunter wrote: > Whether or not linewidth=0 is respected may be backend dependent. In > postscript it means use the smallest possible line. We have discussed > overriding this at the mpl level to impose consistency, but am not > sure what the status of this is. The safest best is to set the

Re: [Matplotlib-users] Filled Curves

2006-12-26 Thread John Hunter
> "Sergio" == Sergio Drumond Ventura <[EMAIL PROTECTED]> writes: Sergio> Hi, I am a new user of matplotlib. First of all I would Sergio> like to say that the people working on matplotlib is doing Sergio> a great job. Sergio> Well, I have tried to use the 'fill', but I cannot

Re: [Matplotlib-users] pylab import problems

2006-12-26 Thread John Hunter
> "Steve" == Steve Kacenjar <[EMAIL PROTECTED]> writes: Steve> Just installed FC6 onto AMD 64 bit processor and have Steve> installed Python. I have also installed numpy and Steve> matplotlib however when I run IPython and begin importing Steve> items I run into a problem when

Re: [Matplotlib-users] pylab import problems

2006-12-26 Thread John Hunter
> "Steve" == Steve Kacenjar <[EMAIL PROTECTED]> writes: Steve> Just installed FC6 onto AMD 64 bit processor and have Steve> installed Python. I have also installed numpy and Steve> matplotlib however when I run IPython and begin importing Steve> items I run into a problem when

Re: [Matplotlib-users] polar axes control

2006-12-26 Thread John Hunter
> "Eric" == Eric Firing <[EMAIL PROTECTED]> writes: Eric> I don't think so--at least, I have not figured it out after Eric> a few minutes of looking around and trying to understand how Eric> things work. I think polar plotting needs quite a bit of Eric> work. In particular, I

Re: [Matplotlib-users] Problems with building from source on windows with MinGW

2006-12-26 Thread John Hunter
> "Edin" == Edin Salkovic <[EMAIL PROTECTED]> writes: Edin> Hi, I'm having problems with building mpl from SVN on WinXP, Edin> Python 2.5, latest numpy. I'm using MinGW from the Edin> enthought edition. I remember building it without problems Edin> just few weeks ago. The bu

[Matplotlib-users] Filled Curves

2006-12-26 Thread Sergio Drumond Ventura
Hi, I am a new user of matplotlib. First of all I would like to say that the people working on matplotlib is doing a great job. Well, I have tried to use the 'fill', but I cannot get rid of the lines. I have tried to use 'linewidth=0' at the end, but it did not work. Could somebody, please, tel

[Matplotlib-users] 3D surface: Updating data?

2006-12-26 Thread Nicolas Bigaouette
Hi, I've been using matplotlib for 2D graphing since two years. Data (3D array) is created with a Fortran program and ploted using imshow() at a particular plane. 3D data is created at each time iteration and saved in a file. For the plotting part, a first imshow() is called with zero values to c

[Matplotlib-users] weird swig error when trying to import pylab from matplotlib 0.87.7

2006-12-26 Thread Abhijit Choudhury
I am getting this weird message. This is a linux machine. the matplotlib version 0.87.7 from pylab import * Traceback (most recent call last): File "", line 1, in ? File "/foo/python/site-packages/lib/python/pylab.py", line 1, in ? from matplotlib.pylab import * File "/foo/python/s

[Matplotlib-users] pylab import problems

2006-12-26 Thread Steve Kacenjar
Just installed FC6 onto AMD 64 bit processor and have installed Python. I have also installed numpy and matplotlib however when I run IPython and begin importing items I run into a problem when try to import pylab. Specifically I receive the following dump: In [3]: import pylab ---