This documentation is out of date.
The new version of the documentation is here: https://cannylogic.com/docs |
Difference between revisions of "Logical AND"
From CANNY Wiki
[unchecked revision] | [unchecked revision] |
Line 14: | Line 14: | ||
!colspan="2" style="background-color:#AFEEEE;"|Group | !colspan="2" style="background-color:#AFEEEE;"|Group | ||
|- | |- | ||
− | |colspan="2" align="center"|[[Built-in Function Blocks | Logical operators]] | + | |colspan="2" align="center"|[[Built-in Function Blocks#Logical operators | Logical operators]] |
|- | |- | ||
!colspan="2" style="background-color:#AFEEEE;"|Inputs | !colspan="2" style="background-color:#AFEEEE;"|Inputs | ||
|- | |- | ||
|style="padding-left:1em;"|Value X: | |style="padding-left:1em;"|Value X: | ||
− | |style="padding-left:1em;"|[[CFD Language#Data| | + | |style="padding-left:1em;"|[[CFD Language#Data|Logical]] |
|- | |- | ||
|style="padding-left:1em;"|Value Y: | |style="padding-left:1em;"|Value Y: | ||
− | |style="padding-left:1em;"|[[CFD Language#Data| | + | |style="padding-left:1em;"|[[CFD Language#Data|Logical]] |
|- | |- | ||
!colspan="2" style="background-color:#AFEEEE;"|Outputs | !colspan="2" style="background-color:#AFEEEE;"|Outputs | ||
|- | |- | ||
|style="padding-left:1em;"|Result: | |style="padding-left:1em;"|Result: | ||
− | |style="padding-left:1em;"|[[CFD Language#Data| | + | |style="padding-left:1em;"|[[CFD Language#Data|Logical]] |
|- | |- | ||
!colspan="2" style="background-color:#AFEEEE;"|Version [[CANNY Lab]] | !colspan="2" style="background-color:#AFEEEE;"|Version [[CANNY Lab]] |
Revision as of 21:44, 19 November 2015
Appearance | |
---|---|
Изображение:5_3_2_2.png | |
Symbol | |
X && Y | |
Group | |
Logical operators | |
Inputs | |
Value X: | Logical |
Value Y: | Logical |
Outputs | |
Result: | Logical |
Version CANNY Lab | |
from 0.6b |
Logical multiplication (conjunction). Set the output value as a result of logical multiplying of input values.
In other words, the output is:
- "1" if and only if at all the inputs is "1",
- "0" if and only if at any of the inputs is "0".
Thus, Truth table operation is as follows:
Value X | Value Y | Result |
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
Features
Using blocks Converter 8-to-1 and Converter 16-to-1 can construct a diagram 'Logical AND "for several values from a fewer functional blocks.
Examples
thumb|Пример 1 | thumb|Пример 2 |