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
[unchecked revision] | [unchecked revision] |
Line 46: | Line 46: | ||
<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 | + | *"1" if and only if only 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. | ||
Revision as of 03:34, 23 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 |
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 only one input 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 |