numpy.greater_equal¶
-
numpy.
greater_equal
(x1, x2[, out]) = <ufunc 'greater_equal'>¶ 逐元素地返回(x1> = x2)的真值。
参数: x1,x2:array_like
输入数组。如果
x1.shape != t>> x2.shape
,它们必须可以广播到一个通用形状一个或另一个的形状)。返回: out:bool或ndarray的bool
如果x1和x2是标量,则bool的数组或单个bool。
也可以看看
例子
>>> np.greater_equal([4, 2, 1], [2, 2, 2]) array([ True, True, False], dtype=bool)