Compute the truth value of NOT x elementwise.
Parameters : | x : array_like
|
---|---|
Returns : | y : bool or ndarray of bool
|
See also
Examples
>>> np.logical_not(3)
False
>>> np.logical_not([True, False, 0, 1])
array([False, True, True, False], dtype=bool)
>>> x = np.arange(5)
>>> np.logical_not(x<3)
array([False, False, False, True, True], dtype=bool)