本文簡要介紹 python 語言中 numpy.testing.assert_array_max_ulp
的用法。
用法:
testing.assert_array_max_ulp(a, b, maxulp=1, dtype=None)
檢查數組的所有項目在 Last Place 中最多 N 個 Units 不同。
- a, b: array_like
要比較的輸入數組。
- maxulp: 整數,可選
a 和 b 的元素可以不同的最後一個位置的最大單位數。默認值為 1。
- dtype: dtype,可選
如果給定,則將 a 和 b 轉換為的數據類型。默認為無。
- ret: ndarray
包含 a 和 b 中項目之間可表示浮點數的數組。
- AssertionError
如果一個或多個元素的差異超過 maxulp。
參數:
返回:
拋出:
注意:
為了計算 ULP 差異,此 API 不區分 NAN 的各種表示(0x7fc00000 和 0xffc00000 之間的 ULP 差異為零)。
例子:
>>> a = np.linspace(0., 1., 100) >>> res = np.testing.assert_array_max_ulp(a, np.arcsin(np.sin(a)))
相關用法
- Python numpy testing.assert_array_almost_equal_nulp用法及代碼示例
- Python numpy testing.assert_array_less用法及代碼示例
- Python numpy testing.assert_array_equal用法及代碼示例
- Python numpy testing.assert_array_almost_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_max_ulp。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。