Tests whether the outcome of a is greater than the outcome of b, i.e. a > b. Instead of using the > sign, you may also use gt.
Syntax
a > b
a gt b
Input
a | is a value |
Domain type: | any Value domain |
b | is a value |
Domain type: | any Value domain |
Output
> returns: | a boolean value, i.e. True, False or undefined |
Domain: | system domain Bool |
Notes:
Tips:
Usable in
MapCalc, TabCalc, Simple calculators
Examples
Pocket line calculator examples:
? 10 > 20 |
returns False |
? 10 gt 20 |
returns False |
? 10 > -20 | returns True |
MapCalc example:
OutMap = InMap > 20
InMap |
OutMap |
||||||||||||||||||
|
|
TabCalc example:
OutCol = InCol > 20
InCol |
OutCol |
50 |
True |
45 |
True |
-40 |
False |
40 |
True |
0 |
False |
15 |
False |
? |
? |
10 |
False |
20 |
False |
See also:
= | <= |
<> | >= |