numpy.repeat#

numpy.repeat(a, repeats, axis=None)[source]#

在每个元素后面重复数组的每个元素

参数:
aarray_like

输入数组。

repeatsint 或 int 数组

每个元素的重复次数。repeats 将广播以适合给定轴的形状。

axisint,可选

要重复值的轴。默认情况下,使用扁平化的输入数组,并返回一个扁平化的输出数组。

返回值:
repeated_arrayndarray

输出数组,其形状与 a 相同,除了给定轴。

另请参见

tile

平铺数组。

unique

查找数组的唯一元素。

示例

>>> import numpy as np
>>> np.repeat(3, 4)
array([3, 3, 3, 3])
>>> x = np.array([[1,2],[3,4]])
>>> np.repeat(x, 2)
array([1, 1, 2, 2, 3, 3, 4, 4])
>>> np.repeat(x, 3, axis=1)
array([[1, 1, 1, 2, 2, 2],
       [3, 3, 3, 4, 4, 4]])
>>> np.repeat(x, [1, 2], axis=0)
array([[1, 2],
       [3, 4],
       [3, 4]])