本文簡要介紹 python 語言中 numpy.repeat
的用法。
用法:
numpy.repeat(a, repeats, axis=None)
重複數組的元素。
- a: array_like
輸入數組。
- repeats: int 或整數數組
每個元素的重複次數。廣播重複以適應給定軸的形狀。
- axis: 整數,可選
沿其重複值的軸。默認情況下,使用扁平化的輸入數組,並返回一個扁平的輸出數組。
- repeated_array: ndarray
輸出數組的形狀與a,除了沿給定軸。
參數:
返回:
例子:
>>> 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]])
相關用法
- Python numpy recarray.dot用法及代碼示例
- Python numpy recarray.itemset用法及代碼示例
- Python numpy recarray.view用法及代碼示例
- Python numpy recarray.tolist用法及代碼示例
- Python numpy recarray.setflags用法及代碼示例
- Python numpy recarray.flat用法及代碼示例
- Python numpy recarray用法及代碼示例
- Python numpy recarray.sort用法及代碼示例
- Python numpy records.fromfile用法及代碼示例
- Python numpy reshape用法及代碼示例
- Python numpy remainder用法及代碼示例
- Python numpy recarray.astype用法及代碼示例
- Python numpy recarray.itemsize用法及代碼示例
- Python numpy recarray.tostring用法及代碼示例
- Python numpy recarray.flatten用法及代碼示例
- Python numpy recarray.item用法及代碼示例
- Python numpy real_if_close用法及代碼示例
- Python numpy recarray.getfield用法及代碼示例
- Python numpy recarray.ndim用法及代碼示例
- Python numpy records.fromstring用法及代碼示例
- Python numpy recarray.byteswap用法及代碼示例
- Python numpy recarray.size用法及代碼示例
- Python numpy recarray.T用法及代碼示例
- Python numpy real用法及代碼示例
- Python numpy result_type用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.repeat。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。