-
numpy.logical_not(x[, out]) =
-
Compute the truth value of NOT x element-wise.
Parameters: x : array_like
Logical NOT is applied to the elements of
x
.Returns: y : bool or ndarray of bool
Boolean result with the same shape as
x
of the NOT operation on elements ofx
.See also
Examples
1234>>> np.logical_not(
3
)
False
>>> np.logical_not([
True
,
False
,
0
,
1
])
array([
False
,
True
,
True
,
False
], dtype
=
bool
)
123>>> x
=
np.arange(
5
)
>>> np.logical_not(x<
3
)
array([
False
,
False
,
False
,
True
,
True
], dtype
=
bool
)
numpy.logical_not()

2025-01-10 15:47:30
Please login to continue.