Exp

Calculates the exponential.

Syntax:

Exp(x)

Parameters:

(f) x floating point number.

Returns:

(f) the value of the exponential ( e ** x).

 

The exp function returns the exponential function of the floating point argument (x).

Example:


real=AskLine("Exponential", "Enter a number", "1.23", 0)
answer=Exp(real)
Message("Exponential of %real% is",answer)
See Also:

LogE