Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

NumPy: repeat() function

numpy.repeat() function

The repeat() function is used to repeat elements of an array.

Syntax:

numpy.repeat(a, repeats, axis=None)
NumPy manipulation: repeat() function

Version: 1.15.0

Parameter:

Name Description Required /
Optional
a Input array. Required
repeats The number of repetitions for each element. repeats is broadcasted to fit the shape of the given axis. Required
axis The axis along which to repeat values. By default, use the flattened input array, and return a flat output array. Optional

Return value:

repeated_array [ndarray] Output array which has the same shape as a, except along the given axis.

Example-1: numpy.repeat() function

>>> import numpy as np
>>> np.repeat(5,3)
array([5, 5, 5])

Pictorial Presentation:

NumPy manipulation: repeat() function

Example-2: numpy.repeat() function

>>> import numpy as np
>>> a = np.array([[3,5], [7,9]])
>>> np.repeat(a, 4)
array([3, 3, 3, 3, 5, 5, 5, 5, 7, 7, 7, 7, 9, 9, 9, 9])
>>> np.repeat(a, 4, axis=1)
array([[3, 3, 3, 3, 5, 5, 5, 5],
       [7, 7, 7, 7, 9, 9, 9, 9]])

Pictorial Presentation:

NumPy manipulation: repeat() function

Example-3: numpy.repeat() function

>>> import numpy as np
>>> np.repeat(a, [1,3], axis=0)
array([[3, 5],
       [7, 9],
       [7, 9],
       [7, 9]])

Pictorial Presentation:

NumPy manipulation: repeat() function

Python - NumPy Code Editor:

Previous: Tiling arrays tile()
Next: Adding and removing elements delete()