EXP
Descriptionβ
Returns x
raised to the base e
.
Aliasβ
- DEXP
Syntaxβ
EXP(<x>)
Parametersβ
Parameter | Description |
---|---|
<x> | independent variable |
Return Valueβ
Return a value of type double
- If the parameter has a null value, it returns NULL
Exampleβ
select exp(2);
+------------------+
| exp(2.0) |
+------------------+
| 7.38905609893065 |
+------------------+
select exp(3.4);
+--------------------+
| exp(3.4) |
+--------------------+
| 29.964100047397011 |
+--------------------+