|
|
GreaterThanOrEqual
When applied to two numbers or to two arrays of numbers, GreaterThanOrEqual produces either a boolean which indicates whether or not the first of two numbers is greater than or equal to the second or an array of booleans indicating whether or not each component of the first array is greater than or equal to the corresponding component of the second array, respectively. It has three variables: in1, in2 and out.
Structure (for scalars): if in1 >= in2 then out becomes true if in1 < in2 then out becomes false
Example: 2 >= 1 becomes true 3 >= 7 becomes false 5 >= 5 becomes true (2, 3, 5) >= (1, 7, 5) becomes (true, false, true)
Special compound model elements
|