numpy.greater(x1,x2,/,out=None,*,where=True,casting='same_kind',order='K',dtype=None,subok=True[,signature,extobj]) = <ufunc 'greater'>¶Return the truth value of (x1 > x2) element-wise.
| Parameters: | x1, x2 : array_like
out : ndarray, None, or tuple of ndarray and None, optional
where : array_like, optional
**kwargs
|
|---|---|
| Returns: | out : bool or ndarray of bool
|
See also
Examples
>>>np.greater([4,2],[2,2])array([ True, False], dtype=bool)
If the inputs are ndarrays, then np.greater is equivalent to ‘>’.
>>>a=np.array([4,2])>>>b=np.array([2,2])>>>a>barray([ True, False], dtype=bool)