本文简要介绍 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。