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