本文简要介绍 python 语言中 scipy.special.geterr
的用法。
用法:
scipy.special.geterr()#
获取当前处理 special-function 错误的方式。
- err: dict
具有键“singular”, “underflow”, “overflow”, “slow”, “loss”、“no_result”、“domain”, “arg”和“other”的字典,其值来自字符串“ignore”, “warn”和“raise”。键代表可能的 special-function 错误,值定义如何处理这些错误。
返回 ::
注意:
有关special-function 错误类型和处理选项的完整文档,请参阅
seterr
。例子:
默认情况下,所有错误都被忽略。
>>> import scipy.special as sc >>> for key, value in sorted(sc.geterr().items()): ... print("{}: {}".format(key, value)) ... arg: ignore domain: ignore loss: ignore no_result: ignore other: ignore overflow: ignore singular: ignore slow: ignore underflow: ignore
相关用法
- Python SciPy special.genlaguerre用法及代码示例
- Python SciPy special.gegenbauer用法及代码示例
- Python SciPy special.gamma用法及代码示例
- Python SciPy special.gammaincinv用法及代码示例
- Python SciPy special.gdtr用法及代码示例
- Python SciPy special.gammasgn用法及代码示例
- Python SciPy special.gammainc用法及代码示例
- Python SciPy special.gammaln用法及代码示例
- Python SciPy special.gdtrc用法及代码示例
- Python SciPy special.gammainccinv用法及代码示例
- Python SciPy special.gdtria用法及代码示例
- Python SciPy special.gdtrix用法及代码示例
- Python SciPy special.gammaincc用法及代码示例
- Python SciPy special.gdtrib用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy special.ncfdtri用法及代码示例
- Python SciPy special.y1用法及代码示例
- Python SciPy special.y0用法及代码示例
- Python SciPy special.ellip_harm_2用法及代码示例
- Python SciPy special.i1e用法及代码示例
- Python SciPy special.smirnovi用法及代码示例
- Python SciPy special.ker用法及代码示例
- Python SciPy special.ynp_zeros用法及代码示例
- Python SciPy special.k0e用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.geterr。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。