本文简要介绍 python 语言中 numpy.testing.assert_array_almost_equal_nulp
的用法。
用法:
testing.assert_array_almost_equal_nulp(x, y, nulp=1)
比较两个阵列相对于它们的间距。
这是比较两个幅度可变的阵列的相对稳健的方法。
- x, y: array_like
输入数组。
- nulp: 整数,可选
最后一位公差的最大单位数(见注释)。默认值为 1。
- None
- AssertionError
如果一个或多个元素的 x 和 y 之间的间距大于 nulp。
参数:
返回:
抛出:
注意:
如果不满足以下条件,则会引发断言:
abs(x - y) <= nulps * spacing(maximum(abs(x), abs(y)))
例子:
>>> x = np.array([1., 1e-10, 1e-20]) >>> eps = np.finfo(x.dtype).eps >>> np.testing.assert_array_almost_equal_nulp(x, x*eps/2 + x)
>>> np.testing.assert_array_almost_equal_nulp(x, x*eps + x) Traceback (most recent call last): ... AssertionError: X and Y are not equal to 1 ULP (max is 2)
相关用法
- Python numpy testing.assert_array_almost_equal用法及代码示例
- Python numpy testing.assert_array_less用法及代码示例
- Python numpy testing.assert_array_max_ulp用法及代码示例
- Python numpy testing.assert_array_equal用法及代码示例
- Python numpy testing.assert_almost_equal用法及代码示例
- Python numpy testing.assert_approx_equal用法及代码示例
- Python numpy testing.assert_allclose用法及代码示例
- 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_array_almost_equal_nulp。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。