Return the truth value of (x1 > x2) element-wise.
| Parameters : | x1, x2 : array_like 
  | 
|---|---|
| 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 > b
array([ True, False], dtype=bool)