Back to Numerical Arrays (NumPy)
np.tile
Construct an array by repeating arr the number of times given by reps.
Syntax
np.tile(arr, reps)
Description
Construct an array by repeating arr the number of times given by reps.
Parameters
| Name | Description |
|---|---|
| arr | - Input array |
| reps | - Number of repetitions along each axis |
Returns
Promise<NDArray>