Logical Operators

And

[Ctrl] [Shift] 7

x and y

Returns 1 if both x and y are non-zero (true). Returns 0 otherwise.

Or

[Ctrl] [Shift] 6

x or y

Returns 1 if either x or y are non-zero (true). Returns 0 otherwise.

Exclusive or, xor

[Ctrl] [Shift] 5

x exclusive or y

Returns 1 if either x or y, but not both, are non-zero (true). Returns 0 otherwise.

Not

[Ctrl] [Shift] 1

notx

Returns 1 if x is zero (false). Returns 0 otherwise.

Operands:

Notes:

QuickSheet

Related Topics