[Numpy-discussion] chirp-z

2007-05-26 Thread Charles R Harris
All, I have been looking around for chirp-z code with a useable license. There is the original fortran version by Rader et. al. out there, as well as a package from FreeBSD at http://ftp2.at.freebsd.org/pub/FreeBSD/distfiles/fxt-2006.12.17.tgz. The latter is c++ and relies on function signatures

Re: [Numpy-discussion] IEEE floating point arithmetics

2007-05-26 Thread Robert Kern
Charles R Harris wrote: > In particular, my machine is little endian, meaning that the low order > bits are stored first. It seems that Hex always prints with the high > order bits first, so on my machine the bits are in the reverse order of > the hex display. Of course. Your int64's are in the sa

Re: [Numpy-discussion] IEEE floating point arithmetics

2007-05-26 Thread Charles R Harris
On 5/26/07, Charles R Harris <[EMAIL PROTECTED]> wrote: On 5/26/07, lorenzo bolla <[EMAIL PROTECTED]> wrote: > > Hi all. > I have to work with floating point arithmetics and I found a module > called "double module" (http://symptotic.com/mj/double/public/double-module.html ) > that does what

Re: [Numpy-discussion] IEEE floating point arithmetics

2007-05-26 Thread Charles R Harris
On 5/26/07, lorenzo bolla <[EMAIL PROTECTED]> wrote: Hi all. I have to work with floating point arithmetics and I found a module called "double module" (http://symptotic.com/mj/double/public/double-module.html ) that does what I'd like. Basically, I would like to find the nearest smaller and big

Re: [Numpy-discussion] IEEE floating point arithmetics

2007-05-26 Thread Travis Oliphant
lorenzo bolla wrote: > Hi all. > I have to work with floating point arithmetics and I found a module > called "double module" > (http://symptotic.com/mj/double/public/double-module.html > ) that does > what I'd like. Basically, I would l

Re: [Numpy-discussion] Vista installer?

2007-05-26 Thread Carl Trachte
For the case in question, having the student set up his or her personal computer to work for the class (dual boot/Ubuntu) would probably be fine. Long term, though, I don't think Vista can be written off as a supported platform. If you're forced by your system admin to use it in a work environmen

[Numpy-discussion] IEEE floating point arithmetics

2007-05-26 Thread lorenzo bolla
Hi all. I have to work with floating point arithmetics and I found a module called "double module" (http://symptotic.com/mj/double/public/double-module.html) that does what I'd like. Basically, I would like to find the nearest smaller and bigger floating point numbers, given a "real" real number (

Re: [Numpy-discussion] Vista installer?

2007-05-26 Thread Charles R Harris
On 5/24/07, Ryan Krauss <[EMAIL PROTECTED]> wrote: I am trying to use Numpy/Scipy for a class I am teaching this summer. I have one student running Vista. Is there an installer that works for Vista? Running the exe file from webpage gives errors about not being able to create various folders a

Re: [Numpy-discussion] Numpy 1.0.3 install problem. Help!

2007-05-26 Thread Travis Oliphant
Yang, Lu wrote: > Hi, > I am installing Numpy 1.0.3 on Solaris 10. I am new to Numpy install. Here > are what I > did and the result of 'python setup.py install'. Please help. Thanks in > advance. > > [snip] > C compiler: /opt/SUNWspro/bin/cc -i -xO4 -xspace -xstrconst -xpentium -mr > -DANSIC

Re: [Numpy-discussion] Median / mean functionality confusing?

2007-05-26 Thread Matthew Brett
Can I resurrect this thread then by agreeing with Chris, and my original post, that it would be better if median had the same behavior as mean, accepting axis and dtype as inputs? Best, Matthew On 5/24/07, Christopher Barker <[EMAIL PROTECTED]> wrote: > Sven Schreiber wrote: > >> (Zar, Jerrold H

Re: [Numpy-discussion] corrcoef of masked array

2007-05-26 Thread Stefan van der Walt
Hi Jesper On Fri, May 25, 2007 at 10:37:44AM +0200, Jesper Larsen wrote: > I have a masked array of dimension (nvariables, nobservations) that contain > missing values at arbitrary points. Is it safe to rely on numpy.corrcoeff to > calculate the correlation coefficients of a masked array (it see

Re: [Numpy-discussion] shelve and object arrays

2007-05-26 Thread Stefan van der Walt
Hi Mark On Fri, May 25, 2007 at 04:53:12PM -0600, Mark.Miller wrote: > I recently experimented with changing from use of string arrays in some > of my code to object arrays. This change speeds up my simulations and > produces identical numerical results relative to use of string arrays. > Howe