![]() |
![]() | ||||
![]() | UFO: Examples | ![]() | ![]() | UFO: Syntax |
UFO: Predefined Functions
Predefined Functions
The predefined functions are listed in the
StatPascal help system.
Available operators
The following operators (in descending order) may be used:
!
^ (or **)
* /
+ -
= < > <= >= <>
? :
Conditional operators return 1 if the condition is satisfied. Operators with the same
priority are evaluated strictly from left to right,
thus a**b**c means (a**b)**c. Real
values are interpreted as true if they are unequal to zero when a logical operator is
applied to them.
The operator ?: works as in the C programming language,
see Further examples a complete example.
![]() |