This is documentation for an old release of NumPy (version 1.3.). Read this page in the documentation of the latest stable release (version > 1.17).
Element-wise True if first array is greater or equal than second array.
Parameters: | x1, x2 : array_like
|
---|---|
Returns: | out : ndarray, bool
|
See also
Examples
>>> np.greater_equal([4,2],[2,2])
array([ True, True], dtype=bool)