next up previous

12.5.2.9 Exponential

The exp function raises the value e (the base of the natural system of logarithms, having a value of approximately 2.718...) to the power specified by its only argument and returns this value as a float.

Syntax

(exp <numeric-expression>)

Example

CLIPS> (exp 1)
2.718281828459045
CLIPS>


next up previous