Greater Than and Greater Than or Equal To Operators
Keystroke: >
x > y
Returns 1 if x > y, 0 otherwise.
Keystroke: [Ctrl]0
x ≥ y
Returns 1 if x ≥ y, 0 otherwise.
Operands:
x and y are real or imaginary
scalars, vectors, or strings, both of the same type. String comparisons result
in alphabetical sorting.
Notes:
You must follow the Boolean expression with an =
to get the result of this comparison.
You can control the evaluation of this operator with a setting in the Worksheet
Options dialog; choose whether or not you want exact equality in your
calculations.
A scalar compared with an array returns another array with element-wise
comparisons.