EXP
Returns the value of e (the base of natural logarithms) raised to the power of x
.
Analyze Syntax
func.exp( <x> )
Analyze Examples
func.exp(2)
┌──────────────────┐
│ func.exp(2) │
├──────────────────┤
│ 7.38905609893065 │
└──────────────────┘
SQL Syntax
EXP( <x> )
SQL Examples
SELECT EXP(2);
┌──────────────────┐
│ exp(2) │
├──────────────────┤
│ 7.38905609893065 │
└──────────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)