numpy.greater_equal
-
numpy.greater_equal(x1, x2[, out]) = <ufunc 'greater_equal'>
-
Return the truth value of (x1 >= x2) element-wise.
Parameters: 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).Returns: out : bool or ndarray of bool
Array of bools, or a single bool if
x1
andx2
are scalars.See also
Examples
>>> np.greater_equal([4, 2, 1], [2, 2, 2]) array([ True, True, False], dtype=bool)
© 2008–2017 NumPy Developers
Licensed under the NumPy License.
https://docs.scipy.org/doc/numpy-1.12.0/reference/generated/numpy.greater_equal.html