====== Exp(power) ====== Category: Number function \\ =====Description===== This function raises the mathematical constant //e//((//e// is an important mathematical constant with the value of approximately 2.718.)) to the power of the argument //power//. \\ =====Arguments===== ^Argument^Type^Description^ |power|Number|The exponent to raise //e// to.| \\ **Return value type:** Number \\ =====Remarks===== If you are looking to raise one number to the power of another number, refer to the [[syntax:functions:pow|Pow(number, power)]] function. \\ =====Examples===== exp(1) //Returns 2.71828182845904 exp(2) //Returns 7.38905609893065 \\ ===== See also ===== * [[syntax:functions:pow|Pow(number, power)]]