Function evaluates logical NOT for the value at the input x. Result of the operation is passed to the output y.
Example in Python
y = not x
Truth Table:
| x | y |
|---|---|
| 0 | 1 |
| 1 | 0 |
| Function menu | Block diagram |
|---|---|
![]() |
![]() |
| Name | Type | Description |
|---|---|---|
x |
bool | Input operand |
| Name | Type | Description |
|---|---|---|
y |
bool | Inversion |
Not available