[Numpy-discussion] Extending an ndarray

Alan McIntyre alan.mcintyre at gmail.com
Wed May 14 15:02:46 EDT 2008


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
<soren.skou.nielsen at gmail.com> wrote:
> 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 at scipy.org
> http://projects.scipy.org/mailman/listinfo/numpy-discussion
>
>



More information about the NumPy-Discussion mailing list