Re: [Numpy-discussion] PSF GSoC 2010 (Py3K focus)

2010-03-08 Thread Charles R Harris
On Mon, Mar 8, 2010 at 10:29 PM, Jarrod Millman wrote: > I added Titus' email regarding the PSF's focus on Py3K-related > projects to our SoC ideas wiki page: > http://projects.scipy.org/scipy/wiki/SummerofCodeIdeas > > Given Titus' email, this is the most likely list of projects we will > get acc

Re: [Numpy-discussion] PSF GSoC 2010 (Py3K focus)

2010-03-08 Thread Jarrod Millman
I added Titus' email regarding the PSF's focus on Py3K-related projects to our SoC ideas wiki page: http://projects.scipy.org/scipy/wiki/SummerofCodeIdeas Given Titus' email, this is the most likely list of projects we will get accepted this year: - finish porting NumPy to Py3K - port SciPy to Py

Re: [Numpy-discussion] printing structured arrays

2010-03-08 Thread Pierre GM
On Mar 8, 2010, at 1:55 PM, Tim Michelsen wrote: > Hello, > I am also looking into the convertsion from strcutured arrays to ndarray. > >> I've just started playing with numpy and have noticed that when printing >> a structured array that the output is not nicely formatted. Is there a >> way to ma

Re: [Numpy-discussion] Is this a bug in numpy.ma.reduce?

2010-03-08 Thread David Goldsmith
How embarrassing! :O Well, as they say, 'nother set of eyes... Thanks! DG On Mon, Mar 8, 2010 at 11:25 AM, Friedrich Romstedt < friedrichromst...@gmail.com> wrote: > It's pretty simple, but I was stunned myself how simple. Have a look > at line 65 of your script you provided: > > W = W.T > >

Re: [Numpy-discussion] Is this a bug in numpy.ma.reduce?

2010-03-08 Thread Friedrich Romstedt
2010/3/8 Bruce Southey : > Hmm, > Appears that you have mixed your indices when creating part2plot. If you > this line instead it works: > part2plot = argW[j*nx/4:(j+1)*nx/4, i*ny/4:(i+1)*ny/4] > > > I found that by looking the shape of the part2plot array that is component > of the argW array. > >

Re: [Numpy-discussion] Is this a bug in numpy.ma.reduce?

2010-03-08 Thread Bruce Southey
On 03/08/2010 12:17 PM, David Goldsmith wrote: On Mon, Mar 8, 2010 at 6:52 AM, Bruce Southey > wrote: On 03/08/2010 01:30 AM, David Goldsmith wrote: On Sun, Mar 7, 2010 at 4:41 AM, Friedrich Romstedt mailto:friedrichromst...@gmail.com>> wrote: I w

Re: [Numpy-discussion] printing structured arrays

2010-03-08 Thread josef . pktd
On Mon, Mar 8, 2010 at 2:24 PM, Skipper Seabold wrote: > On Mon, Mar 8, 2010 at 2:17 PM,   wrote: >> On Mon, Mar 8, 2010 at 2:04 PM, Skipper Seabold wrote: >>> On Mon, Mar 8, 2010 at 2:01 PM,   wrote: On Mon, Mar 8, 2010 at 1:55 PM, Tim Michelsen wrote: > Hello, > I am also loo

Re: [Numpy-discussion] Is this a bug in numpy.ma.reduce?

2010-03-08 Thread Friedrich Romstedt
It's pretty simple, but I was stunned myself how simple. Have a look at line 65 of your script you provided: W = W.T This means, x <-> y. But in the for loops, you still act as if W wasn't transposed. I added some prints, the positions should be clear for you: argW.shape = (320, 200) i, j =

Re: [Numpy-discussion] Is this a bug in numpy.ma.reduce?

2010-03-08 Thread David Goldsmith
On Mon, Mar 8, 2010 at 10:17 AM, David Goldsmith wrote: > On Mon, Mar 8, 2010 at 6:52 AM, Bruce Southey wrote: > >> On 03/08/2010 01:30 AM, David Goldsmith wrote: >> >> On Sun, Mar 7, 2010 at 4:41 AM, Friedrich Romstedt < >> friedrichromst...@gmail.com> wrote: >> >>> I would like to stress the f

Re: [Numpy-discussion] printing structured arrays

2010-03-08 Thread Skipper Seabold
On Mon, Mar 8, 2010 at 2:17 PM, wrote: > On Mon, Mar 8, 2010 at 2:04 PM, Skipper Seabold wrote: >> On Mon, Mar 8, 2010 at 2:01 PM,   wrote: >>> On Mon, Mar 8, 2010 at 1:55 PM, Tim Michelsen >>> wrote: Hello, I am also looking into the convertsion from strcutured arrays to ndarray. >>>

Re: [Numpy-discussion] printing structured arrays

2010-03-08 Thread josef . pktd
On Mon, Mar 8, 2010 at 2:04 PM, Skipper Seabold wrote: > On Mon, Mar 8, 2010 at 2:01 PM,   wrote: >> On Mon, Mar 8, 2010 at 1:55 PM, Tim Michelsen >> wrote: >>> Hello, >>> I am also looking into the convertsion from strcutured arrays to ndarray. >>> I've just started playing with numpy and h

Re: [Numpy-discussion] printing structured arrays

2010-03-08 Thread Skipper Seabold
On Mon, Mar 8, 2010 at 2:01 PM, wrote: > On Mon, Mar 8, 2010 at 1:55 PM, Tim Michelsen > wrote: >> Hello, >> I am also looking into the convertsion from strcutured arrays to ndarray. >> >>> I've just started playing with numpy and have noticed that when printing >>> a structured array that the o

Re: [Numpy-discussion] printing structured arrays

2010-03-08 Thread josef . pktd
On Mon, Mar 8, 2010 at 1:55 PM, Tim Michelsen wrote: > Hello, > I am also looking into the convertsion from strcutured arrays to ndarray. > >> I've just started playing with numpy and have noticed that when printing >> a structured array that the output is not nicely formatted. Is there a >> way t

Re: [Numpy-discussion] printing structured arrays

2010-03-08 Thread Tim Michelsen
Hello, I am also looking into the convertsion from strcutured arrays to ndarray. > I've just started playing with numpy and have noticed that when printing > a structured array that the output is not nicely formatted. Is there a > way to make the formatting look the same as it does for an unstruct

Re: [Numpy-discussion] Is this a bug in numpy.ma.reduce?

2010-03-08 Thread David Goldsmith
On Mon, Mar 8, 2010 at 6:52 AM, Bruce Southey wrote: > On 03/08/2010 01:30 AM, David Goldsmith wrote: > > On Sun, Mar 7, 2010 at 4:41 AM, Friedrich Romstedt < > friedrichromst...@gmail.com> wrote: > >> I would like to stress the fact that imo this is maybe not ticket and not >> a bug. >> >> The

Re: [Numpy-discussion] Is this a bug in numpy.ma.reduce?

2010-03-08 Thread Bruce Southey
On 03/08/2010 01:30 AM, David Goldsmith wrote: On Sun, Mar 7, 2010 at 4:41 AM, Friedrich Romstedt mailto:friedrichromst...@gmail.com>> wrote: 2010/3/5 Pierre GM mailto:pgmdevl...@gmail.com>>: > 'm'fraid no. I gonna have to investigate that. Please open a ticket with a self-contained

[Numpy-discussion] PSF GSoC 2010 (Py3K focus)

2010-03-08 Thread Jarrod Millman
Hello, Given the interest in participating in the GSoC this summer, I am forwarding a very interesting email from Titus Brown. If you are interested in doing a GSoC or mentoring, please read his email carefully. Basically, the PSF will be focuing on Py3K-related projects. Given Pauli's work on