Jump to content

Exclusive Or function: Difference between revisions

From LabVIEW Wiki
Add tips and tricks
mNo edit summary
Line 1: Line 1:
{{stub}}
The '''Exclusive Or''' function computes 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 FALSE. Otherwise, it returns TRUE.
{{LabVIEW Palette Object Information|palette=Functions Palette/Programming/Boolean{{!}}Boolean palette|type=function|icon=Xclusvor.png}}
[[File:Exclusive Or - Terminals.png|thumb|Exclusive Or function]]
[[File:Exclusive Or - Terminals.png|thumb|Exclusive Or function]]
 
{{TOCright}}
{{LabVIEW Palette Object Information|palette=Functions Palette/Programming/Boolean{{!}}Boolean palette|type=function}}
 
== Usage ==
== Usage ==


Line 58: Line 57:


== History ==
== History ==
{{ambox|text=History information is needed.  What changes have occurred over previous versions?}}
{| class="wikitable"
! Version
! Change(s)
|-
|[[File:LV2018.png|frameless|border|64x64px|LabVIEW 2018|link=LabVIEW 2018]]
|More info to come.
|}
== See Also ==
{{ambox|text=Add links to internal resources that would also help.}}


== See also ==
== External Links ==
 
{{ambox|text=Add links to external resources that would also help.}}
== External links ==


[[Category:Boolean Palette]]
[[Category:Boolean Palette]]

Revision as of 18:56, 13 July 2020

The Exclusive Or function computes 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 FALSE. Otherwise, it returns TRUE.

Object information
Owning palette(s) Boolean palette
Type Function
Requires Basic Development Environment
Icon
Exclusive Or function

Usage

Accepts two Boolean or numeric inputs.

Boolean: If provided Boolean values, returns True if any input is True exclusively, otherwise returns False.

x y output
False False False
False True True
True False True
True True False

Numeric: If provided numeric values, performs a bit-wise XOR operation.

Binary Decimal
x 10101010 170
y 11110000 240
output 01011010 90

Best practice

Tips and tricks

  • Wire an error cluster to perform logical operations on error conditions.

History

Version Change(s)
LabVIEW 2018 More info to come.

See Also

External Links