Re: [Numpy-discussion] ANN: NumPy 1.7.0rc1 release

2012-12-28 Thread Travis Oliphant
Fantastic job everyone! Hats of to you Ondrej! -Travis On Dec 28, 2012, at 6:02 PM, Ondřej Čertík wrote: > Hi, > > I'm pleased to announce the availability of the first release candidate of > NumPy 1.7.0rc1. > > Sources and binary installers can be found at > https://sourceforge.net/projec

Re: [Numpy-discussion] Manipulate neighboring points in 2D array

2012-12-28 Thread Zachary Pincus
> You are right. I needed generic filter - to update current point, and not the > neighbors as I wrote. > Initial code is slow loop over 2D python lists, which I'm trying to convert > to numpy and make it useful. In that loop there is inner loop for calculating > neighbors properties, which conf

[Numpy-discussion] ANN: NumPy 1.7.0rc1 release

2012-12-28 Thread Ondřej Čertík
Hi, I'm pleased to announce the availability of the first release candidate of NumPy 1.7.0rc1. Sources and binary installers can be found at https://sourceforge.net/projects/numpy/files/NumPy/1.7.0rc1/ We have fixed all issues known to us since the 1.7.0b2 release. The only remaining issue is a

Re: [Numpy-discussion] Manipulate neighboring points in 2D array

2012-12-28 Thread deb
Thanks Zach You are right. I needed generic filter - to update current point, and not the neighbors as I wrote. Initial code is slow loop over 2D python lists, which I'm trying to convert to numpy and make it useful. In that loop there is inner loop for calculating neighbors properties, which conf