Futurebasic/Language/Reference/exp

EXP function

edit

Statement

edit

✔ Appearance ✔ Standard ✔ Console

Syntax

edit

result# = EXP(expr)

Description

edit

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

edit

LOG; LOG10; LOG2