EXP(n)
The EXP function returns the natural
exponential value of the parameter (en). This is the opposite of the LN
function.
Example:
MyPI := EXP(3.14159);
Interim := ROUND(1000 * (EXP(MyPI)/(1 + EXP(MyPI))));
OUTPUT(Interim);
See Also: LN, SQRT, POWER