image.png

Greater Than Or Equal

Category: Logic Kind: Operation Description: Check if a value is greater than or equal to another value

Inputs

Name Abbreviation Type Access Description
A A Number Item The first value
B B Number Item The second value

Outputs

Name Abbreviation Type Access Description
Result R Boolean Item Whether the first value is greater than or equal to the second

How to

  1. Feed an number into item A

    You can type a number directly into the number box on the node

    The value could be a calculated number from area, a basic number, or an Input Parameter with the number type

  2. Feed a number into item B

    You can type a number directly into the number box on the node

    The value could be a calculated number from area, a basic number, or an Input Parameter with the number type

  3. The result is true if the value in B is Greater Than or Equal To the number in A

    IE:

    A: 3 B: 4 TRUE

    A: 3 B: 3 TRUE

    A: 3 B: 2 FALSE