SqlExpression EXP
From Eigenpedia
Contents |
Syntax
EXP( numeric_expression )
Purpose
Returns the value of e to the numeric_expression power (exponential function)
Input
- numeric_expression - the power to raise e to
Output
- [NUMERIC] - value of e raised to the power of the input, numeric_expression. Returns null on null input.
Example
| Function | Result |
|---|---|
| EXP(2) | 7.389056 |
| EXP(-2) | 0.1353 |

