Re: [Numpy-discussion] [Announce] Numpy 1.3.0 rc1

2009-03-29 Thread David Cournapeau
Robert Pyle wrote: Yes. When it gets to Select a Destination, I would expect my boot disk to get the green arrow as the installation target, but it (and the other three disks) have the exclamation point in the red circle. Same thing happened on my MacBook Pro (Intel) with its one

Re: [Numpy-discussion] Numpy v1.3.0b1 on Linux w/ Intel compilers - unknown file type

2009-03-29 Thread Christian Marquardt
They are, also in v1..3.0rc1 Many thanks! Christian - Charles R Harris charlesr.har...@gmail.com wrote: 2009/3/27 Christian Marquardt christ...@marquardt.sc Error messages? Sure;-) python -c 'import numpy; numpy.test()' Running unit tests for numpy NumPy version

[Numpy-discussion] Command line args for the Intel compilers (32 bit)

2009-03-29 Thread Christian Marquardt
Hi, I've been carrying these modifcations of the build-in compiler command line arguments for the 32-bit Intel compilers for quite some while now; maybe they are interesting for other people as well... I've been using this with ifort (IFORT) 10.1 20080801 on a Suse Linux 10.3. Rationale for

Re: [Numpy-discussion] [Announce] Numpy 1.3.0 rc1

2009-03-29 Thread Robert Pyle
Hi David, On Mar 29, 2009, at 4:03 AM, David Cournapeau wrote: Robert Pyle wrote: Yes. When it gets to Select a Destination, I would expect my boot disk to get the green arrow as the installation target, but it (and the other three disks) have the exclamation point in the red circle. Same

Re: [Numpy-discussion] [Announce] Numpy 1.3.0 rc1

2009-03-29 Thread David Cournapeau
On Sun, Mar 29, 2009 at 7:43 AM, Robert Pyle rp...@post.harvard.edu wrote: Hi David, On Mar 29, 2009, at 4:03 AM, David Cournapeau wrote: Robert Pyle wrote: Yes.  When it gets to Select a Destination, I would expect my boot disk to get the green arrow as the installation target, but it

Re: [Numpy-discussion] [Announce] Numpy 1.3.0 rc1

2009-03-29 Thread Robert Pyle
On Mar 29, 2009, at 10:53 AM, David Cournapeau wrote: On Sun, Mar 29, 2009 at 7:43 AM, Robert Pyle rp...@post.harvard.edu wrote: Hi David, On Mar 29, 2009, at 4:03 AM, David Cournapeau wrote: Robert Pyle wrote: Yes. When it gets to Select a Destination, I would expect my boot

[Numpy-discussion] Efficient removal of duplicates: Numpy discussion board

2009-03-29 Thread Daran L. Rife
Marjolaine, Solution: unique_index = [i for i,x in enumerate(l) if not or x != l[i-1]] Remember that enumerate gives the index,value pairs of the items in any iterable object. Try it for yourself. Here's the output from my IDLE session. In [1]: l = [(1,1), (2,3), (1, 1), (4,5), (2,3),