numpy.all(a, axis=None, out=None, keepdims=False)
numpy.less_equal(x1, x2[, out]) = Return the truth value of (x1 =< x2) element-wise.
numpy.isposinf(x, y=None)
numpy.isinf(x[, out]) = Test element-wise for positive or negative infinity. Returns a boolean array of the same shape as x
numpy.isnan(x[, out]) = Test element-wise for NaN and return result as a boolean array.
numpy.less(x1, x2[, out]) = Return the truth value of (x1 < x2) element-wise.
numpy.not_equal(x1, x2[, out]) = Return (x1 != x2) element-wise.
numpy.isrealobj(x)
numpy.isclose(a, b, rtol=1e-05, atol=1e-08, equal_nan=False)
numpy.isneginf(x, y=None)
Page 2 of 3