Skip to content
Advertisement

python how to pad numpy array with zeros

I want to know how I can pad a 2D numpy array with zeros using python 2.6.6 with numpy version 1.5.0. But these are my limitations. Therefore I cannot use np.pad. For example, I want to pad a with zeros such that its shape matches b. The reason why I want to do this is so I can do:

JavaScript

such that

JavaScript

The only way I can think of doing this is appending, however this seems pretty ugly. is there a cleaner solution possibly using b.shape?

Edit, Thank you to MSeiferts answer. I had to clean it up a bit, and this is what I got:

JavaScript

Advertisement

Answer

Very simple, you create an array containing zeros using the reference shape:

JavaScript

and then insert the array where you need it:

JavaScript

and voila you have padded it:

JavaScript

You can also make it a bit more general if you define where your upper left element should be inserted

JavaScript

but then be careful that you don’t have offsets bigger than allowed. For x_offset = 2 for example this will fail.


If you have an arbitary number of dimensions you can define a list of slices to insert the original array. I’ve found it interesting to play around a bit and created a padding function that can pad (with offset) an arbitary shaped array as long as the array and reference have the same number of dimensions and the offsets are not too big.

JavaScript

And some test cases:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement