本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。