Re: [Numpy-discussion] Extending an ndarray

2008-05-14 Thread Søren Nielsen
Thanks alan, that works! Soren On Wed, May 14, 2008 at 9:02 PM, Alan McIntyre <[EMAIL PROTECTED]> wrote: > Here's one way (probably not the most efficient or elegant): > > # example original array > a=arange(1,26).reshape(5,5) > > # place copy of 'a' into upper left corner of a larger array of z

Re: [Numpy-discussion] Extending an ndarray

2008-05-14 Thread Alan McIntyre
Here's one way (probably not the most efficient or elegant): # example original array a=arange(1,26).reshape(5,5) # place copy of 'a' into upper left corner of a larger array of zeros b=zeros((10,10)) b[:5,:5]=a On Wed, May 14, 2008 at 2:48 PM, Søren Nielsen <[EMAIL PROTECTED]> wrote: > Hi, > >

[Numpy-discussion] Extending an ndarray

2008-05-14 Thread Søren Nielsen
Hi, I've loaded an image into a ndarray. I'd like to extend the ndarray with a border of zeros all around the ndarray.. does anyone here know how to do this? Thanks, Soren ___ Numpy-discussion mailing list Numpy-discussion@scipy.org http://projects.scip