Owning Palette: Boolean Functions
Requires: Base Development System
Computes the logical negation of the logical exclusive or (XOR) of the inputs. Both inputs must be Boolean values, numeric values, or error clusters. If both inputs are TRUE or both inputs are FALSE, the function returns TRUE. Otherwise, it returns FALSE.
Note This function performs bitwise operations on numeric inputs. |
The connector pane displays the default data types for this polymorphic function.
Add to the block diagram | Find on the palette |
Not Exclusive Or truth table
x | y | .not. (x .xor. y)? |
T | T | T |
T | F | F |
F | T | F |
F | F | T |
Refer to the Boolean Functions VI in the labview\examples\Booleans directory for an example of using the Not Exclusive Or function.