numpy.greater_equal

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

Return (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.

Examples

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

Previous topic

numpy.greater

Next topic

numpy.less

This Page