This documentation is out of date.

The new version of the documentation is here: https://cannylogic.com/docs

Difference between revisions of "Exclusive OR"

From CANNY Wiki
Jump to: navigation, search
[unchecked revision][unchecked revision]
Line 41: Line 41:
  
 
<div>
 
<div>
Modulo 2. Set the output result of the XOR operation on input values.
+
Modulo 2. Set the output as the result of XOR operation on input values.
 
</div>
 
</div>
 
</div>
 
</div>
 
<br clear="left">
 
<br clear="left">
 
In other words, the output will be:
 
In other words, the output will be:
*"1" if and only if only one input is "1",
+
*"1" if and only if one input is "1",
 
*"0" if and only if the input values are equivalent to each other.
 
*"0" if and only if the input values are equivalent to each other.
  
Thus, [//en.wikipedia.org/wiki/Truth_table Truth table] operation is as follows:
+
Thus, [//en.wikipedia.org/wiki/Truth_table Truth table] operation is as followed:
  
 
{|border="1" style="border-collapse:collapse;"
 
{|border="1" style="border-collapse:collapse;"

Revision as of 03:53, 7 April 2016

Appearance
5 3 4 2.png
Symbol
XOR
Group
Logical operators
Inputs
value X: Logical
value Y: Logical
Outputs
Result: Logical
Version CANNY Lab
from 0.6b
Icon

Modulo 2. Set the output as the result of XOR operation on input values.


In other words, the output will be:

  • "1" if and only if one input is "1",
  • "0" if and only if the input values are equivalent to each other.

Thus, Truth table operation is as followed:

value X value Y Result
0 0 0
0 1 1
1 0 1
1 1 0

Examples

Example 1
Example 2

See also

Negation

Logical AND

Logical OR

Built-in Function Blocks