numpy.matlib.repmat

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.matlib.repmat.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

numpy.matlib.repmat(a, m, n)[source]

重复0-D到2-D数组或矩阵MxN次。

参数:

a:array_like

要重复的数组或矩阵。

m,n:int

沿着第一和第二轴重复次数a

返回:

out:ndarray

重复a的结果。

例子

>>> import numpy.matlib
>>> a0 = np.array(1)
>>> np.matlib.repmat(a0, 2, 3)
array([[1, 1, 1],
       [1, 1, 1]])
>>> a1 = np.arange(4)
>>> np.matlib.repmat(a1, 2, 2)
array([[0, 1, 2, 3, 0, 1, 2, 3],
       [0, 1, 2, 3, 0, 1, 2, 3]])
>>> a2 = np.asmatrix(np.arange(6).reshape(2, 3))
>>> np.matlib.repmat(a2, 2, 3)
matrix([[0, 1, 2, 0, 1, 2, 0, 1, 2],
        [3, 4, 5, 3, 4, 5, 3, 4, 5],
        [0, 1, 2, 0, 1, 2, 0, 1, 2],
        [3, 4, 5, 3, 4, 5, 3, 4, 5]])