Construct an array by repeating A the number of times given by reps.
If A is an array of shape (d1, d2, ..., dn) and reps is a sequence of
integers, the resulting array will have a shape of (reps[0] * d1, reps[1] * d2, ..., reps[n] * dn), with A tiled along each dimension.
Construct an array by repeating A the number of times given by reps.
If
Ais an array of shape(d1, d2, ..., dn)andrepsis a sequence of integers, the resulting array will have a shape of(reps[0] * d1, reps[1] * d2, ..., reps[n] * dn), withAtiled along each dimension.