mindspore.ops.LogicalNot

class mindspore.ops.LogicalNot[source]

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

Refer to mindspore.ops.logical_not() for more details.

Supported Platforms:

Ascend GPU CPU

Examples

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