numpy.less

numpy.less(x1, x2[, out])

Returns (x1 < x2) element-wise.

Parameters:

x1, x2 : array_like

Input arrays.

Returns:

Out : {ndarray, bool}

Output array of bools, or a single bool if x1 and x2 are scalars.

See also

less_equal

Examples

>>> np.less([1,2],[2,2])
array([ True, False], dtype=bool)

Previous topic

numpy.greater_equal

Next topic

numpy.less_equal

This Page

Quick search