Return the truth value of (x1 =< x2) element-wise.
x1, x2 : array_like
Input arrays. If x1.shape != x2.shape, they must be broadcastable to a common shape (which may be the shape of one or the other).
out : bool or ndarray of bool
Array of bools, or a single bool if x1 and x2 are scalars.
See also
greater, less, greater_equal, equal, not_equal
Examples
>>> np.less_equal([4, 2, 1], [2, 2, 2]) array([False, True, True], dtype=bool)
numpy.less
numpy.equal
Enter search terms or a module, class or function name.