This is documentation for an old release of NumPy (version 1.4.). Read this page in the documentation of the latest stable release (version > 1.17).
Return (x1 >= x2) element-wise.
Parameters: | x1, x2 : array_like
|
---|---|
Returns: | out : {ndarray, bool}
|
See also
Examples
>>> np.greater_equal([4, 2, 1], [2, 2, 2])
array([ True, True, False], dtype=bool)