本文简要介绍 python 语言中 numpy.testing.assert_allclose
的用法。
用法:
testing.assert_allclose(actual, desired, rtol=1e-07, atol=0, equal_nan=True, err_msg='', verbose=True)
如果两个对象不等于所需的容差,则引发AssertionError。
该测试相当于
allclose(actual, desired, rtol, atol)
(注意allclose
有不同的默认值)。它比较了之间的差异实际的和想要的到atol + rtol * abs(desired)
.- actual: array_like
得到的数组。
- desired: array_like
所需的数组。
- rtol: 浮点数,可选
相对容差。
- atol: 浮点数,可选
绝对的宽容。
- equal_nan: 布尔值,可选。
如果为 True,NaNs 将比较相等。
- err_msg: str,可选
失败时要打印的错误消息。
- verbose: 布尔型,可选
如果为 True,则将冲突值附加到错误消息中。
- AssertionError
如果实际和期望不等于指定的精度。
参数:
抛出:
例子:
>>> x = [1e-5, 1e-3, 1e-1] >>> y = np.arccos(np.cos(x)) >>> np.testing.assert_allclose(x, y, rtol=1e-5, atol=0)
相关用法
- Python numpy testing.assert_almost_equal用法及代码示例
- Python numpy testing.assert_array_almost_equal_nulp用法及代码示例
- Python numpy testing.assert_array_less用法及代码示例
- Python numpy testing.assert_approx_equal用法及代码示例
- Python numpy testing.assert_array_max_ulp用法及代码示例
- Python numpy testing.assert_array_equal用法及代码示例
- Python numpy testing.assert_array_almost_equal用法及代码示例
- Python numpy testing.assert_warns用法及代码示例
- Python numpy testing.assert_raises用法及代码示例
- Python numpy testing.assert_string_equal用法及代码示例
- Python numpy testing.assert_equal用法及代码示例
- Python numpy testing.rundocs用法及代码示例
- Python numpy testing.decorators.slow用法及代码示例
- Python numpy testing.suppress_warnings用法及代码示例
- Python numpy testing.run_module_suite用法及代码示例
- Python numpy testing.decorators.setastest用法及代码示例
- Python numpy tensordot用法及代码示例
- Python numpy trim_zeros用法及代码示例
- Python numpy trace用法及代码示例
- Python numpy tri用法及代码示例
- Python numpy true_divide用法及代码示例
- Python numpy transpose用法及代码示例
- Python numpy tile用法及代码示例
- Python numpy tanh用法及代码示例
- Python numpy trapz用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.testing.assert_allclose。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。