Return (x1 < x2) element-wise.
x1, x2 : array_like
Input arrays.
Out : ndarray of bools
Output array of bools, or a single bool if x1 and x2 are scalars.
See also
less_equal, greater, greater_equal, equal, not_equal
Examples
>>> np.less([1, 2], [2, 2]) array([ True, False], dtype=bool)
numpy.greater_equal
numpy.less_equal
Enter search terms or a module, class or function name.