本文簡要介紹 python 語言中 numpy.seterrobj
的用法。
用法:
numpy.seterrobj(errobj, /)
設置定義浮點錯誤處理的對象。
錯誤對象包含定義 NumPy 中錯誤處理行為的所有信息。
seterrobj
由設置錯誤處理行為的其他函數內部使用(seterr
、seterrcall
)。- errobj: 列表
錯誤對象,一個包含三個元素的列表:[內部 numpy 緩衝區大小、錯誤掩碼、錯誤回調函數]。
錯誤掩碼是一個整數,包含所有四個浮點錯誤的處理信息。每種錯誤類型的信息都包含在整數的三位中。如果我們以 8 為基數打印它,我們可以看到為 “invalid”, “under”, “over” 和 “divide” 設置了什麽處理(按此順序)。打印的字符串可以解釋為
0:‘ignore’
1:‘warn’
2:‘raise’
3:‘call’
4:‘print’
5:‘log’
參數:
注意:
有關浮點異常類型和處理選項的完整文檔,請參閱
seterr
。例子:
>>> old_errobj = np.geterrobj() # first get the defaults >>> old_errobj [8192, 521, None]
>>> def err_handler(type, flag): ... print("Floating point error (%s), with flag %s" % (type, flag)) ... >>> new_errobj = [20000, 12, err_handler] >>> np.seterrobj(new_errobj) >>> np.base_repr(12, 8) # int for divide=4 ('print') and over=1 ('warn') '14' >>> np.geterr() {'over': 'warn', 'divide': 'print', 'invalid': 'ignore', 'under': 'ignore'} >>> np.geterrcall() is err_handler True
相關用法
- Python numpy seterr用法及代碼示例
- Python numpy seterrcall用法及代碼示例
- Python numpy setdiff1d用法及代碼示例
- Python numpy set_printoptions用法及代碼示例
- Python numpy setxor1d用法及代碼示例
- Python numpy set_string_function用法及代碼示例
- Python numpy searchsorted用法及代碼示例
- Python numpy select用法及代碼示例
- Python numpy shape用法及代碼示例
- Python numpy scimath.log用法及代碼示例
- Python numpy signbit用法及代碼示例
- Python numpy sort用法及代碼示例
- Python numpy scimath.logn用法及代碼示例
- Python numpy square用法及代碼示例
- Python numpy std用法及代碼示例
- Python numpy scimath.log2用法及代碼示例
- Python numpy sum用法及代碼示例
- Python numpy spacing用法及代碼示例
- Python numpy squeeze用法及代碼示例
- Python numpy scimath.arccos用法及代碼示例
- Python numpy shares_memory用法及代碼示例
- Python numpy s_用法及代碼示例
- Python numpy swapaxes用法及代碼示例
- Python numpy sctype2char用法及代碼示例
- Python numpy show_config用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.seterrobj。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。