Numpy 的 full(~)
方法創建一個新的 Numpy 數組,其條目由指定值填充。
參數
1.shape
| int
或 sequence<int>
結果數組的維度。
2. fill_value
| scalar
填充整體的值。
3. dtype
| string
或 type
| optional
結果數組所需的數據類型。默認情況下,類型是從 fill_value
推斷的。
返回值
一個 Numpy 數組,其條目由指定值填充。
例子
一維數組
要創建大小為 5 的一維 Numpy 數組,並將值 2 作為條目:
np.full(5, 2)
array([2, 2, 2, 2, 2])
這裏,數據類型被推斷為int64
:
np.full(5, 2).dtype
dtype('int64')
二維數組
創建一個 2 行 3 列的 2D Numpy 數組,並將值 5 作為條目:
np.full((2,3), 5)
array([[5, 5, 5],
[5, 5, 5]])
相關用法
- Python NumPy full_like方法用法及代碼示例
- Python functools.wraps用法及代碼示例
- Python functools.singledispatchmethod用法及代碼示例
- Python functools.singledispatch用法及代碼示例
- Python functools.partial用法及代碼示例
- Python functools.partialmethod用法及代碼示例
- Python functools.cache用法及代碼示例
- Python functools.lru_cache用法及代碼示例
- Python functools.reduce用法及代碼示例
- Python functools.cached_property用法及代碼示例
- Python functools.total_ordering用法及代碼示例
- Python functools.wraps()用法及代碼示例
- Python NumPy fliplr方法用法及代碼示例
- Python dict fromkeys()用法及代碼示例
- Python frexp()用法及代碼示例
- Python BeautifulSoup find_next方法用法及代碼示例
- Python NumPy floor方法用法及代碼示例
- Python float轉exponential用法及代碼示例
- Python calendar firstweekday()用法及代碼示例
- Python NumPy flatten方法用法及代碼示例
- Python float.is_integer用法及代碼示例
- Python Django format_lazy用法及代碼示例
- Python format()用法及代碼示例
- Python NumPy fill_diagonal方法用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | full method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。