Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a large number of arrays with dimension 72, x where x is less than 144. I'd like to take these arrays and do two things to them:

  1. Duplicate each row in the original so that there are 144 of them.

  2. Center the arrays horizontally inside a larger 144

The end result is a 144x144 array. I'd like to use numpy and to the greatest extent possible avoid loops ( I can already implement this in loops ). I've searched around but haven't found a neat solution yet.

Thanks,

share|improve this question

1 Answer

Let's take a smaller example:

import numpy as np
a = np.array([[1, 2],
              [3, 4]])

b = np.zeros((4,4))

b[:,1:-1] = np.repeat(a, 2, axis=0)

# returns:

array([[ 0.,  1.,  2.,  0.],
       [ 0.,  1.,  2.,  0.],
       [ 0.,  3.,  4.,  0.],
       [ 0.,  3.,  4.,  0.]])

So for your case:

a = np.arange(5184).reshape(72,72)
b = np.zeros((144,144))
b[36:-36,:] = np.repeat(a, int(144 / a.shape[0]) + 1, axis=1)[:,:144]
share|improve this answer
I really appreciate this code, unfortunately in its final form it was a little bit too obscure for me to grok. For that reason I settled on writing the matrices as images and then using ImageMagick: for f in *.png; do mogrify -geometry $(file $f | cut -f2 -d, | cut -f1 -dx | tr -d " ")x144! -background black -extent 144x144 -gravity center $f; done – Brian Apr 21 '11 at 22:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.