Numpy 的 flatnonzero(~)
方法返回輸入數組的扁平版本中非零值的索引。
參數
1. a
| array_like
輸入數組。
返回值
輸入數組的扁平版本中非零值索引的 Numpy 數組。
例子
一維數組
一維數組已經是平坦的,因此這相當於僅應用 np.nonzero(~)
:
np.flatnonzero([5,3,0,2])
array([0, 1, 3])
這裏,由於值 5、3 和 2 是非零,因此返回索引 0、1 和 3。
二維數組
假設我們有一個二維數組:
np.flatnonzero([[1,0],[2,3]])
array([0, 2, 3])
在這裏,二維數組首先被展平為 [1,0,2,3]
,然後提取非零值的索引。
相關用法
- Python NumPy flatten方法用法及代碼示例
- Python NumPy flat屬性用法及代碼示例
- Python NumPy fliplr方法用法及代碼示例
- Python NumPy floor方法用法及代碼示例
- Python float轉exponential用法及代碼示例
- Python float.is_integer用法及代碼示例
- Python NumPy flipud方法用法及代碼示例
- Python NumPy floor_divide方法用法及代碼示例
- Python float()用法及代碼示例
- Python NumPy float_power方法用法及代碼示例
- Python floating轉binary用法及代碼示例
- Python float構造函數用法及代碼示例
- Python float用法及代碼示例
- Python dict fromkeys()用法及代碼示例
- Python frexp()用法及代碼示例
- Python BeautifulSoup find_next方法用法及代碼示例
- Python functools.wraps用法及代碼示例
- Python functools.singledispatchmethod用法及代碼示例
- Python calendar firstweekday()用法及代碼示例
- Python NumPy full方法用法及代碼示例
- Python Django format_lazy用法及代碼示例
- Python format()用法及代碼示例
- Python NumPy fill_diagonal方法用法及代碼示例
- Python filecmp.cmpfiles()用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | flatnonzero method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。