Re: [Numpy-discussion] Permissions on Sourceforge

2013-08-31 Thread Charles R Harris
On Sat, Aug 31, 2013 at 10:27 AM, Travis Oliphant wrote: > Done for SciPy. > > Thanks Travis. Chuck > > ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] Permissions on Sourceforge

2013-08-31 Thread Travis Oliphant
Done for SciPy. -Travis On Sat, Aug 31, 2013 at 10:19 AM, Robert Kern wrote: > On Sat, Aug 31, 2013 at 4:18 PM, Charles R Harris < > charlesr.har...@gmail.com> wrote: > >> >> On Sat, Aug 31, 2013 at 8:41 AM, Robert Kern wrote: >> >>> On Sat, Aug 31, 2013 at 3:09 PM, Charles R Harris < >>> cha

[Numpy-discussion] [ANN] numexpr 2.2 released

2013-08-31 Thread Francesc Alted
== Announcing Numexpr 2.2 == Numexpr is a fast numerical expression evaluator for NumPy. With it, expressions that operate on arrays (like "3*a+4*b") are accelerated and use less memory than doing the same calculation in Python. It wears multi-thr

Re: [Numpy-discussion] Permissions on Sourceforge

2013-08-31 Thread Charles R Harris
On Sat, Aug 31, 2013 at 9:19 AM, Robert Kern wrote: > On Sat, Aug 31, 2013 at 4:18 PM, Charles R Harris < > charlesr.har...@gmail.com> wrote: > >> >> On Sat, Aug 31, 2013 at 8:41 AM, Robert Kern wrote: >> >>> On Sat, Aug 31, 2013 at 3:09 PM, Charles R Harris < >>> charlesr.har...@gmail.com> wrote

Re: [Numpy-discussion] Permissions on Sourceforge

2013-08-31 Thread Robert Kern
On Sat, Aug 31, 2013 at 4:18 PM, Charles R Harris wrote: > > On Sat, Aug 31, 2013 at 8:41 AM, Robert Kern wrote: > >> On Sat, Aug 31, 2013 at 3:09 PM, Charles R Harris < >> charlesr.har...@gmail.com> wrote: >> >>> Hi Travis, Robert, et al >>> >>> As part of fixing up the release infrastructure it

Re: [Numpy-discussion] Permissions on Sourceforge

2013-08-31 Thread Charles R Harris
On Sat, Aug 31, 2013 at 8:41 AM, Robert Kern wrote: > On Sat, Aug 31, 2013 at 3:09 PM, Charles R Harris < > charlesr.har...@gmail.com> wrote: > >> Hi Travis, Robert, et al >> >> As part of fixing up the release infrastructure it would be helpful if >> you could make Ralf and myself admins of the

Re: [Numpy-discussion] Permissions on Sourceforge

2013-08-31 Thread Robert Kern
On Sat, Aug 31, 2013 at 3:09 PM, Charles R Harris wrote: > Hi Travis, Robert, et al > > As part of fixing up the release infrastructure it would be helpful if you > could make Ralf and myself admins of the numpy and scipy sites on > Sourceforge. Thoughts? > What is your SF user name? I have take

[Numpy-discussion] Permissions on Sourceforge

2013-08-31 Thread Charles R Harris
Hi Travis, Robert, et al As part of fixing up the release infrastructure it would be helpful if you could make Ralf and myself admins of the numpy and scipy sites on Sourceforge. Thoughts? Chuck ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.o

Re: [Numpy-discussion] Structured array dtype

2013-08-31 Thread Nicolas Rougier
Thanks for the explanation. In fact, since the 4 components of 'b' are contiguous in memory, I wanted to find a way to express that fact in the dtype. Z = np.zeros(10, [('a', np.float32, 3), ('b', np.float32, 4)]) Z['b'].strides (28,4) Z = np.zeros((10,4), np.float32) Z.strides (16,4) Z = np.