OpenBIMRL | Mathematical operator functions
Class path: math.operators.gateAnd
AND gate
Description
The AND gate node performs a Boolean conjunction in terms of the AND gate.
Thereby the truth table of an AND gate looks like this:
A | B | A \(\land\) B |
---|---|---|
false | false | false |
false | true | false |
true | false | false |
true | true | true |
Input
Input | Name | Type | Description |
---|---|---|---|
0 | A | Boolean | A |
1 | B | Boolean | B |
Output
Output | Name | Type | Description |
---|---|---|---|
0 | AandB | Boolean | A \(\land\) B |
Use/Example
Sample file
Download of a sample file so that the user can test the usage himself