Re: [Numpy-discussion] New patch for new mgrid / ogrid functionality

2008-09-24 Thread David Kaplan
Hi, On Tue, 2008-09-23 at 20:54 -0500, [EMAIL PROTECTED] wrote: > On Tue, Sep 23, 2008 at 09:39:53AM +0200, David Kaplan wrote: > > I would note that there is nothing in the API breakage that prevents > > doing what Gael mentions. The only change is that: > > > >

Re: [Numpy-discussion] New patch for new mgrid / ogrid functionality

2008-09-23 Thread David Kaplan
Hi, I would note that there is nothing in the API breakage that prevents doing what Gael mentions. The only change is that: > > X = mgrid[0:4, 0:4, 0:4] would be replaced with: X = asarray( mgrid[ 0:4, 0:4, 0:4 ] ) On the other hand, not making this change makes for a strange and ugly impleme