[Numpy-discussion] Incompatability of svn 3868 distutils with v10.0 Intel compilers and MKL9.1

2007-06-13 Thread rex
I recently built NumPy & SciPy from svn sources using Intel's icc 10.0, ifort 10.0, and mkl 9.1 under openSUSE 10.2. In the process, I discovered and worked around four bugs (they are just quick hacks, not proper fixes; for example, some of them break compatibilty with earlier versions of Intel com

Re: [Numpy-discussion] masked arrays and record arrays

2007-06-13 Thread Eric Firing
I have made changes in matplotlib svn to facilitate experimentation with the maskedarray module; I hope this will speed up the process of testing it and incorporating it into numpy as a replacement for numpy.core.ma. mpl scripts now accept the switches --maskedarray and --ma to force the use of

Re: [Numpy-discussion] attribute names on record arrays

2007-06-13 Thread Travis Oliphant
John Hunter wrote: >I fund myself using record arrays more and more, and feature missing >is the ability to do tab completion on attribute names in ipython, >presumably because you are using a dict under the hood and __getattr__ >to resolve > >o.key > >where o is a record array and key is a field

[Numpy-discussion] attribute names on record arrays

2007-06-13 Thread John Hunter
I fund myself using record arrays more and more, and feature missing is the ability to do tab completion on attribute names in ipython, presumably because you are using a dict under the hood and __getattr__ to resolve o.key where o is a record array and key is a field name. How hard would it be

Re: [Numpy-discussion] masked arrays and record arrays

2007-06-13 Thread Pierre GM
On Tuesday 12 June 2007 12:56:39 John Hunter wrote: > On 6/12/07, Robert Kern <[EMAIL PROTECTED]> wrote: > > John Hunter wrote: > > > Do record arrays support masks? John, Have you tried mrecords, in the alternative maskedarray package available on the scipy SVN ? It should support masked fields