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