mindspore.mint.logical_not
- mindspore.mint.logical_not(input)[source]
Computes the "logical NOT" of a tensor element-wise.
\[out_{i} = \neg input_{i}\]- Parameters
input (Tensor) – The input tensor.
- Returns
Tensor, the shape is the same as the input, and the dtype is bool.
- Raises
TypeError – If input is not a Tensor.
- Supported Platforms:
Ascend
Examples
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor, mint >>> x = Tensor(np.array([True, False, True]), mindspore.bool_) >>> output = mint.logical_not(x) >>> print(output) [False True False]