Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Furthermore the following functions can be used in the expression: sin, cos, tan, asin, acos, atan, sinh, cosh, tanh, asinh, acosh, atanh, log, ln, exp, sqrt, abs, pow, max, min, sum, average, qnorm, pgamma. Note that the trigonometric functions assume that the argument is in radians.

...


Code Block
 >  


greater than


Code Block
 >= 


greater than or equals


Code Block
 <  


less than


Code Block
 <= 


less than or equals


Code Block
 '==' 


equals


Code Block
 '!=' 


unequals

If statements can also be nested, e.g.

...