Element-wise True if first array is greater or equal than second array.
x1, x2 : array_like
Input arrays.
out : ndarray, bool
Output array.
See also
greater, less, less_equal, equal
Examples
>>> np.greater_equal([4,2],[2,2]) array([ True, True], dtype=bool)
numpy.greater
numpy.less