Re: [Matplotlib-users] Installation problem matplotlib svn

2007-01-15 Thread Steve Chaplin
On Mon, 2007-01-15 at 10:57 -0800, [EMAIL PROTECTED] wrote: > Hi, > > I cannot install the latest matplotlib on openSUSE10.2 > python setup.py install yields > OK, I've updated _image.cpp to work on 64-bit systems with new versions of Python, but you will n

Re: [Matplotlib-users] Installation problem matplotlib svn

2007-01-15 Thread Darren Dale
On Monday 15 January 2007 13:56, Nils Wagner wrote: > Hi, > > I cannot install the latest matplotlib on openSUSE10.2 Have you tried deleting your build and site-packages/matplotlib directories, and rebuilding from scratch? -

[Matplotlib-users] Installation problem matplotlib svn

2007-01-15 Thread Nils Wagner
Hi, I cannot install the latest matplotlib on openSUSE10.2 python setup.py install yields gcc: src/_nc_backend_agg.cpp ./CXX/Extensions.hxx: In constructor ‘Py::PythonExtension::PythonExtension() [with T = BufferRegion]’: src/_backend_agg.h:50: instantiated from here ./CXX/Extensions.hxx:477:

Re: [Matplotlib-users] Subplot order

2007-01-15 Thread David Huard
Salut Nicolas, You can get by with something like: a = arange(nrow*ncol)+1 indices = hstack(a.reshape(nrow, ncol).T) for i in indices: subplot(nrow, ncol, i) ... David 2007/1/15, Nicolas Bigaouette <[EMAIL PROTECTED]>: Hi, I want to compare data and I am doing so with subplots. Ideal

Re: [Matplotlib-users] Subplot order

2007-01-15 Thread Martin Richter
I think the easiest way would be using a dictionary: d = {221:221, 222:223, 223:222, 224:224} for i in arange(4): subplot(d[i+221]) plot(arange(10)) text(0.5,0.5,'i=%d'%i) Bye, Martin - Take Surveys. Earn Cash.

[Matplotlib-users] Subplot order

2007-01-15 Thread Nicolas Bigaouette
Hi, I want to compare data and I am doing so with subplots. Ideally, I would like the subplot command to fill the columns before filling the rows as it is doing right now. Now: subpot(221) = 1st row, 1st column subpot(222) = 1st row, 2nd column subpot(223) = 2nd row, 1st column subpot(224) = 2nd r