Exp()

Calculates the exponent whose base is e that represents number.

The constant e equals 2.71828182845904, the base of the natural logarithm.

This function is the inverse of Log(), the natural logarithm of number.

Exp( number=number );

Returns: Number

Argument Description
number
number, required

Exponent to apply to the base e

Examples

The following code example will output an example number returned from the exp() function.

<cfoutput>#exp(10)#</cfoutput>

See also