Numpy 的 item(~)
方法將源數組的特定元素作為標量返回。
參數
1.arg
| None
或 int
或 tuple
或 int
允許的類型如下:
類型 |
意義 |
---|---|
None |
源數組的大小必須為 1,並以標量形式返回該元素。 |
int |
使用數組的扁平版本作為標量返回的元素的索引。 |
int 的元組 |
作為標量返回的元素的索引。 |
返回值
源數組中特定元素的標量表示。
例子
a = np.array([4,5,6])
a.item(1)
5
a = np.array([5])
a.item()
5
考慮以下二維數組:
a = np.array([[4,5],[6,7]])
a
array([[4, 5],
[6, 7]])
a.item(2)
6
a.item((1,0))
6
相關用法
- Python NumPy itemset方法用法及代碼示例
- Python dict items()用法及代碼示例
- Python NumPy itemsize屬性用法及代碼示例
- Python itertools.takewhile用法及代碼示例
- Python itertools.cycle用法及代碼示例
- Python itertools.dropwhile用法及代碼示例
- Python itertools.repeat用法及代碼示例
- Python itertools.combinations_with_replacement用法及代碼示例
- Python itertools.groupby()用法及代碼示例
- Python itertools.repeat()用法及代碼示例
- Python iter用法及代碼示例
- Python itertools.count用法及代碼示例
- Python itertools.starmap用法及代碼示例
- Python itertools.filterfalse用法及代碼示例
- Python itertools.chain.from_iterable用法及代碼示例
- Python itertools.groupby用法及代碼示例
- Python itertools.zip_longest用法及代碼示例
- Python calendar itermonthdays2()用法及代碼示例
- Python itertools.accumulate用法及代碼示例
- Python itertools.tee用法及代碼示例
- Python itertools.combinations用法及代碼示例
- Python itertools.permutations用法及代碼示例
- Python itertools.product用法及代碼示例
- Python calendar itermonthdays()用法及代碼示例
- Python itertools.chain用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | item method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。