Exp

From NSB App Studio
Revision as of 21:22, 8 August 2012 by Brendon (talk | contribs)
Jump to navigation Jump to search

Exp(number)

Description

Exp returns a double-precision value equal to enumber. The required parameter, number, is any numeric expression. e is the base of natural logarithms, and is approximately equal to 2.718282.

Example

REM Exp Example
'Exp raises a number to the eth power
PRINT "Exp(0) = " & Exp(0)
PRINT "e = " & Exp(1)

Output

Exp(0) = 1
e = 2.718282

Related Items

LOG