PickBASIC / FlashBASIC
exp() function
.mdThe exp() function returns the exponential of a numeric expression, that is, base e, which is 2.718281828 rounded to precision to the power of the numeric expression.
Syntax
exp(num.exp)Parameter(s)
| num.exp | Value of the expression in the range {+/-}140737488355327*(10(-p)), where p is the precision. |
Description
This function is the inverse of the ln() (natural logarithm) function.
Example(s)
print exp(5) ;* 148.4132
See also
Referenced by
3 topics mention exp() function in its description.