-
numpy.array_equal(a1, a2)
[source] -
True if two arrays have the same shape and elements, False otherwise.
Parameters: a1, a2 : array_like
Input arrays.
Returns: b : bool
Returns True if the arrays are equal.
See also
-
allclose
- Returns True if two arrays are element-wise equal within a tolerance.
-
array_equiv
- Returns True if input arrays are shape consistent and all elements equal.
Examples
12345678>>> np.array_equal([
1
,
2
], [
1
,
2
])
True
>>> np.array_equal(np.array([
1
,
2
]), np.array([
1
,
2
]))
True
>>> np.array_equal([
1
,
2
], [
1
,
2
,
3
])
False
>>> np.array_equal([
1
,
2
], [
1
,
4
])
False
-
numpy.array_equal()

2025-01-10 15:47:30
Please login to continue.