Type Function Library math.* Return value Number Revision Current Public Release (2018.3326) Keywords exp, exponent See also math.log()
Returns the value e^x^
.
print ( math.exp (0)) ---> 1 print ( math.exp (1)) ---> 2.718281828459 |