jax.numpy.logical_xor#
- jax.numpy.logical_xor = <jnp.ufunc 'logical_xor'>#
逐元素计算逻辑异或运算。
numpy.logical_xor
的 JAX 实现。这是一个通用函数,并支持jax.numpy.ufunc
中描述的其他 API。- 参数:
x – 输入数组。必须可以广播到公共形状。
y – 输入数组。必须可以广播到公共形状。
args (ArrayLike)
out (None)
where (None)
- 返回:
包含逐元素逻辑异或结果的数组。
- 返回类型:
Any
示例
>>> x = jnp.arange(4) >>> jnp.logical_xor(x, 1) Array([ True, False, False, False], dtype=bool)