This comparison function compares the operands connected to the input parameters in regard to greater/equal. Comparison proceeds from left to right. The function is available as standard function GE and safety-related function GE_S.
NOTE:
The comparison is always a signed comparison. Therefore the values for DWORD are limited to 31 bits, for WORD to 15 bits and for BYTE to 7 bits.
GE
Parameter |
Data types |
Description |
IN1 |
ELEMENTARY |
First input value |
IN2 |
ELEMENTARY |
Second input value |
OUT |
BOOL |
TRUE if IN1 is greater or equal than IN2. FALSE if IN1 is less than IN2. |
GE_S
Parameter |
Data types |
Description |
IN1 |
SAFEELEMENTARY |
First input value |
IN2 |
SAFEELEMENTARY |
Second input value |
OUT |
SAFEBOOL |
TRUE if IN1 is greater or equal than IN2. FALSE if IN1 is less than IN2. |
NOTE:
All input parameters must have the same data type.