mindspore.ops.logical_not

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

Computes the “logical NOT” of a tensor element-wise.

outi=¬xi
Parameters

x (Tensor) – The input tensor whose dtype is bool. (N,) where means,any number of additional dimensions.

Returns

Tensor, the shape is the same as the x, and the dtype is bool.

Raises
Supported Platforms:

Ascend GPU CPU

Examples

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