Re: [Numpy-discussion] Ternary plots anywhere?

2010-07-05 Thread Ariel Rokem
Hi Armando, Here's something in that direction: http://nature.berkeley.edu/~chlewis/Sourcecode.html Hope that helps - Ariel On Fri, Jul 2, 2010 at 12:40 AM, "V. Armando Solé" wrote: > Dear all, > > Perhaps this is a bit off topic for the mailing list, but this is > probably the only mailing l

[Numpy-discussion] BOF notes: Fernando's proposal: NumPy ndarray with named axes

2010-07-05 Thread Jonathan March
Fernando Perez proposed a NumPy enhancement, an ndarray with named axes, prototyped as DataArray by him, Mike Trumpis, Jonathan Taylor, Matthew Brett, Kilian Koepsell and Stefan van der Walt. At SciPy 2010 on July 1, Fernando convened a BOF (Birds of a Feather) discussion of this proposal. The no

Re: [Numpy-discussion] cython and f2py

2010-07-05 Thread Geoffrey Ely
On Jul 2, 2010, at 1:07 PM, Matthew Brett wrote: >> Can numpy.distutils be directed to process *.pyx with Cython rather than >> Pyrex? > > Yes, but at the moment I believe you have to monkey-patch numpy > distutils : see the top of > > http://github.com/matthew-brett/nipy/blob/master/setup.py >

Re: [Numpy-discussion] ANN: scipy 0.8.0 release candidate 1

2010-07-05 Thread Alan G Isaac
On 7/5/2010 11:13 AM, Ralf Gommers wrote: > The failure is yet another case of test precision set slightly too high. > Thought we had got them all... Not sure about the matlab thing. Which > version of Windows are you running? Vista 64bit (with 32 bit Python 2.6). Alan __

Re: [Numpy-discussion] ANN: scipy 0.8.0 release candidate 1

2010-07-05 Thread Ralf Gommers
On Mon, Jul 5, 2010 at 10:56 PM, Alan G Isaac wrote: > One odd error (the directory was empty upon inspection) and one failure. > Alan Isaac > The failure is yet another case of test precision set slightly too high. Thought we had got them all... Not sure about the matlab thing. Which version of

Re: [Numpy-discussion] ANN: scipy 0.8.0 release candidate 1

2010-07-05 Thread Alan G Isaac
One odd error (the directory was empty upon inspection) and one failure. Alan Isaac Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import numpy as np >>> np.__version__ '1.4.1' >>> im

Re: [Numpy-discussion] subtle behavior when subtracting sub-arrays

2010-07-05 Thread Pauli Virtanen
Mon, 05 Jul 2010 16:03:56 +0200, Steve Schmerler wrote: [clip] > To sum up, I find it a bit subtle that > a = a - a[...,0][...,None] > works as expected, while > a -= a[...,0][...,None] > does not. > I guess the reason is that in the latter case (and the corresponding > loop), a[...,0] itse

[Numpy-discussion] subtle behavior when subtracting sub-arrays

2010-07-05 Thread Steve Schmerler
Hi I stumbled upon some numpy behavior which I was not aware of. Say I have an array of shape (2,2,3) and want to subtract the sub-array a[...,0] of shape (2,2) from each a[...,i], i=0,1,2 . ## ok ## In [1]: a=arange(2*2*3).reshape(2,2,3) # Copy the array to be subtracted. In [

Re: [Numpy-discussion] debian benchmarks

2010-07-05 Thread Isaac Gouy
Sturla Molden molden.no> writes: > It is also the kind of tasks where NumPy would help. It would be nice to > get NumPy into the shootout. At least for the sake of advertising http://shootout.alioth.debian.org/u32/program.php?test=spectralnorm&lang=python&id=2 __

Re: [Numpy-discussion] numpy on windows 64 bit

2010-07-05 Thread Robin
On Mon, Jul 5, 2010 at 12:09 PM, David Cournapeau wrote: > > Short of saying what those failures are, we can't help you, Thanks for reply... Somehow my message got truncated - I had written more detail about the errors! >> I noticed that on windows sys.maxint is the 32bit value (2147483647 > > T

Re: [Numpy-discussion] numpy on windows 64 bit

2010-07-05 Thread David Cournapeau
Hi Robin, On Mon, Jul 5, 2010 at 5:24 PM, Robin wrote: > Hi, > > I am having some problems with win64 with all my tests failing. Short of saying what those failures are, we can't help you, > > I installed amd64 Python from Python.org and numpy and scipy from > http://www.lfd.uci.edu/~gohlke/pyt

[Numpy-discussion] numpy on windows 64 bit

2010-07-05 Thread Robin
Hi, I am having some problems with win64 with all my tests failing. I installed amd64 Python from Python.org and numpy and scipy from http://www.lfd.uci.edu/~gohlke/pythonlibs/ I noticed that on windows sys.maxint is the 32bit value (2147483647 ___ Num