Member of the boolean class.
c = not(a)
Determines whether an input element is 0. not(a) is equivalent to ~a.
| Name | Description |
| a | Specifies a scalar, vector, or matrix. |
| Name | Description |
| c | Returns a scalar, vector, or matrix of Boolean values. An element in c is 1 if the corresponding element in a is 0. Otherwise, the element is 0. c is a matrix of the same size as a. |
A = [1, 0]
C = not(A)