原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.logical_or.html
校对:(虚位以待)
numpy.
logical_or
(x1, x2[, out]) = <ufunc 'logical_or'>逐元素计算x1或x2的真值。
参数: | x1,x2:array_like
|
---|---|
返回: | y:ndarray或bool
|
例子
>>> np.logical_or(True, False)
True
>>> np.logical_or([True, False], [False, False])
array([ True, False], dtype=bool)
>>> x = np.arange(5)
>>> np.logical_or(x < 1, x > 3)
array([ True, False, False, False, True], dtype=bool)