原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.greater.html
校对:(虚位以待)
numpy.
greater
(x1, x2[, out]) = <ufunc 'greater'>逐元素地返回(x1> x2)的真值。
参数: | x1,x2:array_like
|
---|---|
返回: | out:bool或ndarray的bool
|
例子
>>> np.greater([4,2],[2,2])
array([ True, False], dtype=bool)
如果输入是ndarrays,那么np.greater等于'>'。
>>> a = np.array([4,2])
>>> b = np.array([2,2])
>>> a > b
array([ True, False], dtype=bool)