bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / repeat
_ArrayFunctionDispatcher
numpy:repeat
source: /dev/numpy/build-install/usr/lib/python3.14/site-packages/numpy/_core/fromnumeric.py :437
Signature
def repeat ( a , repeats , axis = None ) Summary
Repeat each element of an array after themselves
Parameters
a: array_likeInput array.
repeats: int or array of intsThe number of repetitions for each element.
repeatsis broadcasted to fit the shape of the given axis.axis: int, optionalThe axis along which to repeat values. By default, use the flattened input array, and return a flat output array.
Returns
repeated_array: ndarrayOutput array which has the same shape as
a, except along the given axis.
Examples
import numpy as np np.repeat(3, 4) x = np.array([[1,2],[3,4]]) np.repeat(x, 2) np.repeat(x, 3, axis=1) np.repeat(x, [1, 2], axis=0)✓
See also
- tile
Tile an array.
- unique
Find the unique elements of an array.
Aliases
-
numpy.repeat