原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.logical_xor.html
校对:(虚位以待)
numpy.
logical_xor
(x1, x2[, out]) = <ufunc 'logical_xor'>按元素方式计算x1 XOR x2的真值。
参数: | x1,x2:array_like
|
---|---|
返回: | y:bool或ndarray的bool
|
例子
>>> np.logical_xor(True, False)
True
>>> np.logical_xor([True, True, False, False], [True, False, True, False])
array([False, True, True, False], dtype=bool)
>>> x = np.arange(5)
>>> np.logical_xor(x < 1, x > 3)
array([ True, False, False, False, True], dtype=bool)
显示广播支持的简单示例
>>> np.logical_xor(0, np.eye(2))
array([[ True, False],
[False, True]], dtype=bool)