當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python numpy matlib.repmat用法及代碼示例


本文簡要介紹 python 語言中 numpy.matlib.repmat 的用法。

用法:

matlib.repmat(a, m, n)

重複 0 維到二維數組或矩陣 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]])

相關用法


注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.matlib.repmat。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。