[Numpy-discussion] Vectorizing computation

2015-02-13 Thread Francesc Alted
Hi, I would like to vectorize the next computation: nx, ny, nz = 720, 180, 3 outheight = np.arange(nz) * 3 oro = np.arange(nx * ny).reshape((nx, ny)) def compute1(outheight, oro): result = np.zeros((nx, ny, nz)) for ix in range(nx): for iz in range(nz): result[ix, :,

Re: [Numpy-discussion] Vectorizing computation

2015-02-13 Thread Julian Taylor
On 02/13/2015 11:51 AM, Francesc Alted wrote: Hi, I would like to vectorize the next computation: nx, ny, nz = 720, 180, 3 outheight = np.arange(nz) * 3 oro = np.arange(nx * ny).reshape((nx, ny)) def compute1(outheight, oro): result = np.zeros((nx, ny, nz)) for ix in

Re: [Numpy-discussion] Vectorizing computation

2015-02-13 Thread Francesc Alted
2015-02-13 12:51 GMT+01:00 Julian Taylor jtaylor.deb...@googlemail.com: On 02/13/2015 11:51 AM, Francesc Alted wrote: Hi, I would like to vectorize the next computation: nx, ny, nz = 720, 180, 3 outheight = np.arange(nz) * 3 oro = np.arange(nx * ny).reshape((nx, ny)) def

Re: [Numpy-discussion] Vectorizing computation

2015-02-13 Thread Julian Taylor
On 02/13/2015 01:03 PM, Francesc Alted wrote: 2015-02-13 12:51 GMT+01:00 Julian Taylor jtaylor.deb...@googlemail.com mailto:jtaylor.deb...@googlemail.com: On 02/13/2015 11:51 AM, Francesc Alted wrote: Hi, I would like to vectorize the next computation: nx,

Re: [Numpy-discussion] Vectorizing computation

2015-02-13 Thread Francesc Alted
2015-02-13 13:25 GMT+01:00 Julian Taylor jtaylor.deb...@googlemail.com: On 02/13/2015 01:03 PM, Francesc Alted wrote: 2015-02-13 12:51 GMT+01:00 Julian Taylor jtaylor.deb...@googlemail.com mailto:jtaylor.deb...@googlemail.com: On 02/13/2015 11:51 AM, Francesc Alted wrote: Hi,