dask.array.repeat

dask.array.repeat

dask.array.repeat(a, repeats, axis=None)[源代码]

重复数组中每个元素在其自身之后

此文档字符串是从 numpy.repeat 复制而来的。

Dask 版本可能存在一些不一致性。

参数
aarray_like

输入数组。

重复整数或整数数组

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

int, 可选

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

返回
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]])