原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.repeat.html
校对:(虚位以待)
numpy.
repeat
(a, repeats, axis=None)[source]重复数组的元素。
参数: | a:array_like
repeats:int或数组的整数
axis:int,可选
|
---|---|
返回: | repeated_array:ndarray
|
也可以看看
tile
例子
>>> 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]])