[Numpy-discussion] is there a better way to do this array repeat?

Stéfan van der Walt stefan at sun.ac.za
Sun Aug 16 20:08:33 EDT 2009


2009/8/16 Chris Colbert <sccolbert at gmail.com>:
> I have a 1x3 array that I want to repeat n times and form an nx3 array
> where each row is a copy of the original array.

a = np.arange(3)[None, :]
np.repeat(a, 10, axis=0)

Regards
Stéfan



More information about the NumPy-Discussion mailing list