Exp

From NSB App Studio
Revision as of 04:15, 4 July 2012 by Brendon (talk | contribs) (Created page with "EXP(''number'') '''Description''' EXP returns a double-precision value equal to e<sup>number</sup>. The required parameter, ''number'', is any numeric expression. e is the b...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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