Map and Table Calculation

>= or GE operator

Tests whether the outcome of a is greater than or equal to the outcome of b, i.e. a >= b. Instead of using the >= sign, you may also use ge.

Syntax

a >= b
a ge 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 ge 20

returns False

? 10 >= -20

returns True

MapCalc example:

OutMap = InMap >= 20

 

InMap

OutMap

50 45 -40
40 0 15
? 10 20
True True False
True False False
? False True

TabCalc example:

OutCol = InCol >= 20

 

InCol

OutCol

50

True

45

True

-40

False

40

True

0

False

15

False

?

?

10

False

20

True

See also:

= <=
<> >