all(a[, axis, out, keepdims, where])
all
Test whether all array elements along a given axis evaluate to True.
any(a[, axis, out, keepdims, where])
any
Test whether any array element along a given axis evaluates to True.
isfinite(x, /[, out, where, casting, order, …])
isfinite
Test element-wise for finiteness (not infinity or not Not a Number).
isinf(x, /[, out, where, casting, order, …])
isinf
Test element-wise for positive or negative infinity.
isnan(x, /[, out, where, casting, order, …])
isnan
Test element-wise for NaN and return result as a boolean array.
isnat(x, /[, out, where, casting, order, …])
isnat
Test element-wise for NaT (not a time) and return result as a boolean array.
isneginf(x[, out])
isneginf
Test element-wise for negative infinity, return result as bool array.
isposinf(x[, out])
isposinf
Test element-wise for positive infinity, return result as bool array.
iscomplex(x)
iscomplex
Returns a bool array, where True if input element is complex.
iscomplexobj(x)
iscomplexobj
Check for a complex type or an array of complex numbers.
isfortran(a)
isfortran
Check if the array is Fortran contiguous but not C contiguous.
isreal(x)
isreal
Returns a bool array, where True if input element is real.
isrealobj(x)
isrealobj
Return True if x is a not complex type or an array of complex numbers.
isscalar(element)
isscalar
Returns True if the type of element is a scalar type.
logical_and(x1, x2, /[, out, where, …])
logical_and
Compute the truth value of x1 AND x2 element-wise.
logical_or(x1, x2, /[, out, where, casting, …])
logical_or
Compute the truth value of x1 OR x2 element-wise.
logical_not(x, /[, out, where, casting, …])
logical_not
Compute the truth value of NOT x element-wise.
logical_xor(x1, x2, /[, out, where, …])
logical_xor
Compute the truth value of x1 XOR x2, element-wise.
allclose(a, b[, rtol, atol, equal_nan])
allclose
Returns True if two arrays are element-wise equal within a tolerance.
isclose(a, b[, rtol, atol, equal_nan])
isclose
Returns a boolean array where two arrays are element-wise equal within a tolerance.
array_equal(a1, a2[, equal_nan])
array_equal
True if two arrays have the same shape and elements, False otherwise.
array_equiv(a1, a2)
array_equiv
Returns True if input arrays are shape consistent and all elements equal.
greater(x1, x2, /[, out, where, casting, …])
greater
Return the truth value of (x1 > x2) element-wise.
greater_equal(x1, x2, /[, out, where, …])
greater_equal
Return the truth value of (x1 >= x2) element-wise.
less(x1, x2, /[, out, where, casting, …])
less
Return the truth value of (x1 < x2) element-wise.
less_equal(x1, x2, /[, out, where, casting, …])
less_equal
Return the truth value of (x1 <= x2) element-wise.
equal(x1, x2, /[, out, where, casting, …])
equal
Return (x1 == x2) element-wise.
not_equal(x1, x2, /[, out, where, casting, …])
not_equal
Return (x1 != x2) element-wise.