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 88: Line 88:
 
[[Logical OR]]
 
[[Logical OR]]
  
[[Справочник по встроенным функциональным блокам | Встроенные функциональные блоки]]
+
[[Built-in_Function_Blocks | Built-in Function Blocks]]

Revision as of 20:52, 19 November 2015

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

left|Иконка

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


In other words, the output will be:

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

Thus, Truth table operation is as follows:

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

Examples

thumb|Пример 1 thumb|Пример 2

See also

Negation

Logical AND

Logical OR

Built-in Function Blocks