Re: [Numpy-discussion] Vista installer?

2007-05-29 Thread Ryan Krauss
Sorry, I should have mentioned that the student who got Numpy running in Vista said the key was to right click on the exe and choose "Run as Administrator". He said that was all there was to it (he also said the the Python-2.5 msi just installed with no problems). If anyone can confirm that this

Re: [Numpy-discussion] Vista installer?

2007-05-29 Thread Ryan Krauss
Success. I think this is officially a viable alternative for running Scipy/Numpy/Matplotlib/IPython in Vista. I turned off my firewall on my host (XP) and I was able to browse the internet in Ubuntu. Andrew was right that I still couldn't ping, but I seem to have everything else. And with shar

Re: [Numpy-discussion] NumPy 1.0.3 for OS-X

2007-05-29 Thread David L Goldsmith
Thanks, sent it to Bob over the weekend; sorry, I'm pretty sure I didn't include the date in the filename, and Bob specifically requested a zip (after I sent him a mkpg, I believe), so that's what I sent him - Bob, do you need me to repackage and send again? DG Russell E Owen wrote: > In artic

Re: [Numpy-discussion] NumPy 1.0.3 for OS-X

2007-05-29 Thread Russell E Owen
In article <[EMAIL PROTECTED]>, David L Goldsmith <[EMAIL PROTECTED]> wrote: > Hold on again, I think I did it: it works on my BSN Intel Mac and Chris > is about to test it on his not-so-new PPC Mac. Assuming I built a > viable product, how do I put it in the right place (i.e., @ > http://pyt

Re: [Numpy-discussion] Building NumPy 1.0.3 on SGI/IRIX system

2007-05-29 Thread Mary Haley
On Tue, 29 May 2007, Charles R Harris wrote: > On 5/29/07, Mary Haley <[EMAIL PROTECTED]> wrote: >> >> >> On Tue, 29 May 2007, Charles R Harris wrote: >> >> > On 5/29/07, Mary Haley <[EMAIL PROTECTED]> wrote: >> >> >> >> >> >> Hi all, >> >> >> >> I have been trying to build numpy 1.0.3 on my S

Re: [Numpy-discussion] Building NumPy 1.0.3 on SGI/IRIX system

2007-05-29 Thread Charles R Harris
On 5/29/07, Mary Haley <[EMAIL PROTECTED]> wrote: On Tue, 29 May 2007, Charles R Harris wrote: > On 5/29/07, Mary Haley <[EMAIL PROTECTED]> wrote: >> >> >> Hi all, >> >> I have been trying to build numpy 1.0.3 on my SGI/IRIX64 box (64-bit >> version) with no luck. I'm using Python 2.4.4. > >

Re: [Numpy-discussion] Building NumPy 1.0.3 on SGI/IRIX system

2007-05-29 Thread Charles R Harris
On 5/29/07, Mary Haley <[EMAIL PROTECTED]> wrote: On Tue, 29 May 2007, Charles R Harris wrote: > On 5/29/07, Mary Haley <[EMAIL PROTECTED]> wrote: >> >> >> Hi all, >> >> I have been trying to build numpy 1.0.3 on my SGI/IRIX64 box (64-bit >> version) with no luck. I'm using Python 2.4.4. > >

Re: [Numpy-discussion] build problem on RHE3 machine

2007-05-29 Thread Albert Strasheim
Hello all - Original Message - From: "David M. Cooke" <[EMAIL PROTECTED]> To: "Discussion of Numerical Python" Cc: "Albert Strasheim" <[EMAIL PROTECTED]> Sent: Tuesday, May 29, 2007 6:58 PM Subject: Re: [Numpy-discussion] build problem on RHE3 machine Is there any info I can provide

Re: [Numpy-discussion] Building NumPy 1.0.3 on SGI/IRIX system

2007-05-29 Thread Mary Haley
On Tue, 29 May 2007, Charles R Harris wrote: > On 5/29/07, Mary Haley <[EMAIL PROTECTED]> wrote: >> >> >> Hi all, >> >> I have been trying to build numpy 1.0.3 on my SGI/IRIX64 box (64-bit >> version) with no luck. I'm using Python 2.4.4. > > > There have been other reports of problems on IRI

[Numpy-discussion] byteswap() leaves dtype unchanged

2007-05-29 Thread Erin Sheldon
Hi all - I have read some big-endian data and I want to byte swap it to little endian. If I use a.byteswap(True) the bytes clearly get swapped, but the dtype is not updated to reflect the new data type. e.g [~]|1> a=N.array([2.5, 3.2]) [~]|2> a.dtype.descr <2> [('', ' a.byteswap(True) <

Re: [Numpy-discussion] Building NumPy 1.0.3 on SGI/IRIX system

2007-05-29 Thread Charles R Harris
On 5/29/07, Mary Haley <[EMAIL PROTECTED]> wrote: Hi all, I have been trying to build numpy 1.0.3 on my SGI/IRIX64 box (64-bit version) with no luck. I'm using Python 2.4.4. There have been other reports of problems on IRIX 6.5. What we need is someone running on an SGI box and willing to

[Numpy-discussion] Building NumPy 1.0.3 on SGI/IRIX system

2007-05-29 Thread Mary Haley
Hi all, I have been trying to build numpy 1.0.3 on my SGI/IRIX64 box (64-bit version) with no luck. I'm using Python 2.4.4. I've tried setting CC to both the default "cc" compiler (which I built python with), and "gcc", with no luck. I tried c89 and c99, still with no luck. I get errors like:

[Numpy-discussion] ANN: PyTables 2.0rc2 released

2007-05-29 Thread Francesc Altet
Announcing PyTables 2.0rc2 PyTables is a library for managing hierarchical datasets and designed to efficiently cope with extremely large amounts of data with support for full 64-bit file addressing. PyTables runs on top of the HDF5 libra

Re: [Numpy-discussion] build problem on RHE3 machine

2007-05-29 Thread David M. Cooke
On May 29, 2007, at 08:56 , Albert Strasheim wrote: > Hello all > > - Original Message - > From: "David M. Cooke" <[EMAIL PROTECTED]> > To: "Discussion of Numerical Python" > Sent: Friday, May 25, 2007 7:50 PM > Subject: Re: [Numpy-discussion] build problem on RHE3 machine > > >> On Fri,

Re: [Numpy-discussion] howto exclude elements from sorted array which are present in other sorted array

2007-05-29 Thread Charles R Harris
On 5/29/07, dmitrey <[EMAIL PROTECTED]> wrote: hi all, I have 2 sorted arrays arr1 & arr2 (ascending order, for example [1,2,5,8] and [3,5], but length may be thousands, so I need simpliest way, not costly). Howto obtain arr3 that consists of elements present in arr1 but absent in arr2? Of cours

Re: [Numpy-discussion] howto exclude elements from sorted array which are present in other sorted array

2007-05-29 Thread dmitrey
thanks all, I have solved the problem dmitrey wrote: > hi all, > I have 2 sorted arrays arr1 & arr2 (ascending order, for example > [1,2,5,8] and [3,5], but length may be thousands, so I need simpliest > way, not costly). > Howto obtain arr3 that consists of elements present in arr1 but absent >

Re: [Numpy-discussion] build problem on RHE3 machine

2007-05-29 Thread Albert Strasheim
Hello all - Original Message - From: "David M. Cooke" <[EMAIL PROTECTED]> To: "Discussion of Numerical Python" Sent: Friday, May 25, 2007 7:50 PM Subject: Re: [Numpy-discussion] build problem on RHE3 machine > On Fri, May 25, 2007 at 12:45:32PM -0500, Robert Kern wrote: >> David M. Coo

[Numpy-discussion] howto exclude elements from sorted array which are present in other sorted array

2007-05-29 Thread dmitrey
hi all, I have 2 sorted arrays arr1 & arr2 (ascending order, for example [1,2,5,8] and [3,5], but length may be thousands, so I need simpliest way, not costly). Howto obtain arr3 that consists of elements present in arr1 but absent in arr2? Of course, I can write something by myself, like arr3 =

[Numpy-discussion] Long double in Python with Numpy

2007-05-29 Thread Charles V.
Hi, I have a C library using "long double" numbers. With SWIG, I am able to use this library in Python. I use the PyArray_FromDims function in the SWIG "interface" file. But sometimes, I only need one long double : it's not very convenient to create an array for only one number... In Python t

Re: [Numpy-discussion] Vista installer?

2007-05-29 Thread Andrew Straw
Andrew Straw wrote: > OK, I have placed an Ubuntu 7.04 image with stock numpy, scipy, matplotlib, and ipython at http://mosca.caltech.edu/outgoing/Ubuntu%207.04%20for%20scientific%20computing%20in%20Python.zip > > The md5sum is 4191e13abda1154c94e685ffdc0f829b. > > Note: I haven't tested thi