Python| numpy.assert_allclose() 方法
在numpy.assert_allclose()
方法的帮助下,我们可以使用numpy.assert_allclose()
在两个数组对象不相等时得到断言错误。
Syntax : numpy.assert_allclose(actual_array, desired_array)
Return : Return the Assertion error if two array objects are not equal.
示例 #1:
在这个例子中,我们可以看到使用numpy.assert_allclose()
方法,如果两个数组不相等,我们能够得到断言错误。
# import numpy
import numpy as np
# using numpy.assert_allclose() method
gfg1 = [1, 2, 3]
gfg2 = np.array(gfg1)
if np.testing.assert_allclose(gfg1, gfg2):
print("Matched")
输出 :
Matched
示例 #2:
# import numpy
import numpy as np
# using numpy.assert_allclose() method
gfg1 = [1, 2, 3]
gfg2 = np.array([4, 5, 6])
print(np.testing.assert_allclose(gfg1, gfg2))
输出 :
Mismatch: 100%
Max absolute difference: 3
Max relative difference: 0.75
gfg1: array([1, 2, 3])
gfg2: array([4, 5, 6])