ES|QL EXP function
number-
Numeric expression. If
null, the function returnsnull.
Returns the value of e raised to the power of the given number.
| number | result |
|---|---|
| double | double |
| integer | double |
| long | double |
| unsigned_long | double |
ROW d = 5.0
| EVAL s = EXP(d)
| d: double | s:double |
|---|---|
| 5.0 | 148.413159102576603 |