numpyの要素の繰り返しnumpy.repeat


numpy.repeat(a,repeats,axis=None)[source]公式ドキュメントa:入力マトリクスrepeats:要素の繰り返し回数axis:どのaxis上で繰り返し、各行を何回繰り返してaxis=0、各列を何回繰り返してaxis=1例
>>> 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]])