GESTEP

Engineering Functions:
Function: GESTEP() - Returns 1 if number ≥ step; returns 0 (zero) otherwise.
(E1): Compare value 5 and step 4 - Result is 1 - Value 5 is greater than or equal to step 4
(E2): Compare value 5 and step 5 - Result is 1 - Value 5 is greater than or equal to step 5
(E3): Compare value 4 and step 5 - Result is 0 - Value 4 is less than step 5
(E4): Compare value -4 and step -5 - Result is 1 - Value -4 is greater than or equal to step -5
(E5): Compare value -5 and step -4 - Result is 0 - Value -5 is less than step -4
(E6): Compare value 1 and step 0 - Result is 1 - Value 1 is greater than or equal to step 0