[Numpy-discussion] EuroSciPy 2013: deadline extension 5 May 2013!

2013-04-29 Thread Tiziano Zito
The committee of the EuroSciPy 2013 conference has extended the deadline for abstract submission to **Sunday May 5th 2013, 23:59:50 (UTC)**. Up to then, new abstracts may be submitted on http://www.euroscipy.org . We are very much looking forward to your submissions to the conference. EuroSciPy

[Numpy-discussion] int to binary

2013-04-29 Thread josef . pktd
Is there a available function to convert an int to binary representation as sequence of 0 and 1? binary_repr produces strings and is not vectorized np.binary_repr(5) '101' np.binary_repr(5, width=4) '0101' np.binary_repr(np.arange(5), width=4) Traceback (most recent call last): File

Re: [Numpy-discussion] int to binary

2013-04-29 Thread Sebastian Berg
On Mon, 2013-04-29 at 11:15 -0400, josef.p...@gmail.com wrote: Is there a available function to convert an int to binary representation as sequence of 0 and 1? Maybe unpackbits/packbits? It only supports the uint8 type, but you can view anything as that (being aware of endianess where

Re: [Numpy-discussion] int to binary

2013-04-29 Thread josef . pktd
On Mon, Apr 29, 2013 at 11:25 AM, Sebastian Berg sebast...@sipsolutions.net wrote: On Mon, 2013-04-29 at 11:15 -0400, josef.p...@gmail.com wrote: Is there a available function to convert an int to binary representation as sequence of 0 and 1? Maybe unpackbits/packbits? It only supports the

Re: [Numpy-discussion] int to binary

2013-04-29 Thread Warren Weckesser
On 4/29/13, josef.p...@gmail.com josef.p...@gmail.com wrote: Is there a available function to convert an int to binary representation as sequence of 0 and 1? binary_repr produces strings and is not vectorized np.binary_repr(5) '101' np.binary_repr(5, width=4) '0101'

Re: [Numpy-discussion] int to binary

2013-04-29 Thread josef . pktd
On Mon, Apr 29, 2013 at 12:24 PM, Warren Weckesser warren.weckes...@gmail.com wrote: On 4/29/13, josef.p...@gmail.com josef.p...@gmail.com wrote: Is there a available function to convert an int to binary representation as sequence of 0 and 1? binary_repr produces strings and is not

Re: [Numpy-discussion] Proposal of new function: iteraxis()

2013-04-29 Thread Andrew Giessel
Matthew: Thanks for the link to array order discussion. Any more thoughts on Phil's slice() function? On Fri, Apr 26, 2013 at 4:50 PM, Gael Varoquaux gael.varoqu...@normalesup.org wrote: On Thu, Apr 25, 2013 at 08:10:32PM +0100, Robert Kern wrote: In my opinion, duplicating functionality

Re: [Numpy-discussion] int to binary

2013-04-29 Thread Daniele Nicolodi
On 29/04/2013 17:15, josef.p...@gmail.com wrote: Is there a available function to convert an int to binary representation as sequence of 0 and 1? ... That's the best I could come up with in a few minutes: ... def int2bin(x, width, roll=True): x = np.atleast_1d(x) res =

Re: [Numpy-discussion] 1.8 release

2013-04-29 Thread Chris Barker - NOAA Federal
On Thu, Apr 25, 2013 at 8:19 AM, Dave Hirschfeld dave.hirschf...@gmail.comwrote: Hi All,I think it is time to start the runup to the 1.8 release. I don't know of any outstanding blockers but if anyone has a PR/issue that they feel needs to be in the next Numpy release now is the time to make

Re: [Numpy-discussion] 1.8 release

2013-04-29 Thread Benjamin Root
On Thu, Apr 25, 2013 at 11:16 AM, Charles R Harris charlesr.har...@gmail.com wrote: Hi All, I think it is time to start the runup to the 1.8 release. I don't know of any outstanding blockers but if anyone has a PR/issue that they feel needs to be in the next Numpy release now is the time to

Re: [Numpy-discussion] 1.8 release

2013-04-29 Thread Charles R Harris
On Mon, Apr 29, 2013 at 1:04 PM, Benjamin Root ben.r...@ou.edu wrote: On Thu, Apr 25, 2013 at 11:16 AM, Charles R Harris charlesr.har...@gmail.com wrote: Hi All, I think it is time to start the runup to the 1.8 release. I don't know of any outstanding blockers but if anyone has a

Re: [Numpy-discussion] 1.8 release

2013-04-29 Thread Chris Barker - NOAA Federal
On Mon, Apr 29, 2013 at 12:07 PM, Charles R Harris charlesr.har...@gmail.com wrote: It would be good to get the utc-everywhere fix for datetime64 in there if someone has time to look into it. +1 I've been on vacation, so haven't written up the various notes and comments as a NEP yet --

Re: [Numpy-discussion] 1.8 release

2013-04-29 Thread Chris Barker - NOAA Federal
On Mon, Apr 29, 2013 at 12:12 PM, Chris Barker - NOAA Federal chris.bar...@noaa.gov wrote: It would be good to get the utc-everywhere fix for datetime64 in there if someone has time to look into it. I'll see if I can open an issue for the easy fix. DONE: Issue #3290 -- Christopher