User Tools

Site Tools


el:exp

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

el:exp [2016/01/01 22:39]
el:exp [2020/02/28 10:46] (current)
Line 1: Line 1:
 +===== Exp =====
  
 +==== Format ====
 +
 +**exp** ( //exponent// )
 +
 +==== Description ====
 +
 +Returns the base of the natural logarithm //e// (approx: 2.718282) raised to the //exponent// This is the inverse of the [[log|Log]] function.
 +
 +==== Example ====
 +
 +<code>
 +print exp(1)
 +print exp(log(10))
 +</code>
 +will print
 +<code>
 +2.718282
 +10
 +</code>
 +
 +==== New To Version ==== 
 +0.9.6.51