本文簡要介紹 python 語言中 numpy.geterr
的用法。
用法:
numpy.geterr()
獲取處理浮點錯誤的當前方式。
- res: dict
帶有鍵 “divide”, “over”, “under” 和 “invalid” 的字典,其值來自字符串 “ignore”, “print”, “log”, “warn”, “raise” 和 “call”。鍵代表可能的浮點異常,值定義了如何處理這些異常。
返回:
注意:
有關浮點異常類型和處理選項的完整文檔,請參閱
seterr
。例子:
>>> np.geterr() {'divide': 'warn', 'over': 'warn', 'under': 'ignore', 'invalid': 'warn'} >>> np.arange(3.) / np.arange(3.) array([nan, 1., 1.])
>>> oldsettings = np.seterr(all='warn', over='raise') >>> np.geterr() {'divide': 'warn', 'over': 'raise', 'under': 'warn', 'invalid': 'warn'} >>> np.arange(3.) / np.arange(3.) array([nan, 1., 1.])
相關用法
- Python numpy.geterrcall用法及代碼示例
- Python numpy geterrobj用法及代碼示例
- Python numpy get_include用法及代碼示例
- Python numpy geomspace用法及代碼示例
- Python numpy genfromtxt用法及代碼示例
- Python numpy gradient用法及代碼示例
- Python numpy gcd用法及代碼示例
- Python numpy greater_equal用法及代碼示例
- Python numpy greater用法及代碼示例
- Python numpy RandomState.standard_exponential用法及代碼示例
- Python numpy hamming用法及代碼示例
- Python numpy legendre.legint用法及代碼示例
- Python numpy chararray.ndim用法及代碼示例
- Python numpy chebyshev.chebsub用法及代碼示例
- Python numpy chararray.nbytes用法及代碼示例
- Python numpy ma.indices用法及代碼示例
- Python numpy matrix.A1用法及代碼示例
- Python numpy MaskedArray.var用法及代碼示例
- Python numpy ma.zeros用法及代碼示例
- Python numpy broadcast用法及代碼示例
- Python numpy matrix.T用法及代碼示例
- Python numpy matrix.I用法及代碼示例
- Python numpy MaskedArray.T用法及代碼示例
- Python numpy hermite.hermfromroots用法及代碼示例
- Python numpy hermite_e.hermediv用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.geterr。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。