numpy.tile()
numpy.tile
-
numpy.tile(A, reps)
[source] -
Construct an array by repeating A the number of times given by reps.
If
reps
has lengthd
, the result will have dimension ofmax(d, A.ndim)
.If
A.ndim < d
,A
is promoted to be d-dimensional by prepending new axes. So a shape (3,) array is promoted to (1, 3) for 2-D replication, or shape (1, 1, 3) for 3-D replication. If this is not the desired behavior, promoteA
to d-dimensions manually before calling this function.If
A.ndim > d
,reps
is promoted toA
.ndim by pre-pending 1’s to it. Thus for anA
of shape (2