FutureBasic Logo

<<    Index    >> FutureBasic

exp   statement



Syntax
result = exp(expr)

Description
Returns the value of the transcendental number "e" raised to the power of expr. The number "e" is the base of natural logarithms, and is approximately equal to 2.718281828. The exp function is used extensively in probability theory and in applied sciences.
exp is the inverse of the log function; that is: exp(log(x)) equals x. exp always returns a double-precision result.

See also
log; log10; log2