Exp Procedure

Returns the base of the natural logarithms (e) to the power of dx.

Syntax

[ dResult = ] Exp ( dx )

The Exp procedure syntax has the following parts:

 

Name

Type

Description

dResult

Double

Result

dx

Val Double

Input Value

Comments

dx should be a numerical expression (double/integer).

Example

dx = 2

df = Exp(dx)

! now dx is 2 and df is 7.38905609893065

See Also

Log, Log10