本文簡要介紹 python 語言中 numpy.tile
的用法。
用法:
numpy.tile(A, reps)
通過重複 A 由 reps 給出的次數來構造一個數組。
如果代表有長度
d
,結果的維度為max(d, A.ndim)
.如果
A.ndim < d
,A通過添加新軸將其提升為d-dimensional。因此,對於 2-D 複製,形狀 (3,) 數組會提升為 (1, 3),對於 3-D 複製,形狀 (1, 1, 3) 會提升為 (1, 1, 3)。如果這不是所需的行為,請推廣A在調用此函數之前手動更改為d-dimensions。如果
A.ndim > d
,代表被提升為A.ndim 通過在其前麵添加 1 來實現。因此對於一個A形狀為 (2, 3, 4, 5),a代表(2, 2) 被視為 (1, 1, 2, 2)。注意:雖然可以使用 tile 進行廣播,但強烈建議使用 numpy 的廣播操作和函數。
- A: array_like
輸入數組。
- reps: array_like
A 沿每個軸的重複次數。
- c: ndarray
平鋪的輸出數組。
參數:
返回:
例子:
>>> a = np.array([0, 1, 2]) >>> np.tile(a, 2) array([0, 1, 2, 0, 1, 2]) >>> np.tile(a, (2, 2)) array([[0, 1, 2, 0, 1, 2], [0, 1, 2, 0, 1, 2]]) >>> np.tile(a, (2, 1, 2)) array([[[0, 1, 2, 0, 1, 2]], [[0, 1, 2, 0, 1, 2]]])
>>> b = np.array([[1, 2], [3, 4]]) >>> np.tile(b, 2) array([[1, 2, 1, 2], [3, 4, 3, 4]]) >>> np.tile(b, (2, 1)) array([[1, 2], [3, 4], [1, 2], [3, 4]])
>>> c = np.array([1,2,3,4]) >>> np.tile(c,(4,1)) array([[1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4]])
相關用法
- Python numpy trim_zeros用法及代碼示例
- Python numpy testing.rundocs用法及代碼示例
- Python numpy testing.assert_warns用法及代碼示例
- Python numpy trace用法及代碼示例
- Python numpy testing.assert_array_almost_equal_nulp用法及代碼示例
- Python numpy tri用法及代碼示例
- Python numpy testing.assert_array_less用法及代碼示例
- Python numpy testing.assert_raises用法及代碼示例
- Python numpy true_divide用法及代碼示例
- Python numpy transpose用法及代碼示例
- Python numpy testing.assert_almost_equal用法及代碼示例
- Python numpy testing.assert_approx_equal用法及代碼示例
- Python numpy tanh用法及代碼示例
- Python numpy testing.assert_allclose用法及代碼示例
- Python numpy testing.decorators.slow用法及代碼示例
- Python numpy trapz用法及代碼示例
- Python numpy testing.suppress_warnings用法及代碼示例
- Python numpy take用法及代碼示例
- Python numpy testing.assert_string_equal用法及代碼示例
- Python numpy testing.run_module_suite用法及代碼示例
- Python numpy testing.assert_array_max_ulp用法及代碼示例
- Python numpy take_along_axis用法及代碼示例
- Python numpy testing.assert_equal用法及代碼示例
- Python numpy triu_indices用法及代碼示例
- Python numpy testing.assert_array_equal用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.tile。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。