| Variable name
| Variable type
| Description
|
| eq(x,y)
| function, x & y = decimal, return boolean
| x equal to y (x == y)
|
| ne(x,y)
| function, x & y = decimal, return boolean
| x not equal to y (x != y)
|
| g(x,y)
| function, x & y = decimal, return boolean
| x greater than y (x > y)
|
| ge(x,y)
| function, x & y = decimal, return boolean
| x greater than or equal to y (x >= y)
|
| l(x,y)
| function, x & y = decimal, return boolean
| x less than y (x < y)
|
| le(x,y)
| function, x & y = decimal, return boolean
| x less than or equal to y (x <= y)
|
From Phun Beta 5.28
Go back to Math.
Last modified June 10, 2009 3:25 pm