GE
PROGRAM GE_DEMO
VAR
R1,R2:REAL;
BOOL1: BOOL;
END_VAR
BOOL1:= GE(IN1 := R1, IN2 := R2);
END_PROGRAM
Function compares two or more inputs. Output is TRUE if every previous input is greater or equal than every next input.
Example for 4 inputs:
9, 8, 6, 4 - True
9, 8, 7, 7 - True
9, 8, 10, 5 - False
Input | Type | Description |
---|---|---|
IN1.. | ANY_ELEMENTARY | Input value |
Output | Type | Description |
---|---|---|
=> | BOOL | Output value |