mindspore.ops.logical_not

mindspore.ops.logical_not(x)[源代码]

逐元素计算两个Tensor的逻辑非运算。

\[out_{i} = \neg x_{i}\]
参数:
  • x (Tensor) - 输入Tensor,数据类型为bool。 \((N,*)\) ,其中 \(*\) 表示任意数量的附加维度。

返回:

Tensor,shape与 x 相同,数据类型为bool。

异常:
  • TypeError - 如果 x 不是Tensor。

  • TypeError - 如果 x 的数据类型不是bool。

支持平台:

Ascend GPU CPU

样例:

>>> x = Tensor(np.array([True, False, True]), mindspore.bool_)
>>> output = ops.logical_not(x)
>>> print(output)
[False  True False]