Exp
exp
Returns the base-e exponential of the input.
Spec
exp(arg0) Parameters
arg0 - A numeric value. Return Value
e raised to the power of arg0 as a double. Example
datatable(val:double)[0.0, 1.0]
| extend result = exp(val) | val | result |
|---|---|
| 0.0 | 1.0 |
| 1.0 | 2.718281828459045 |