series_exp()

Learn how to use the series_exp() function to calculate the element-wise base-e exponential function (e^x) of the numeric series input.

Calculates the element-wise base-e exponential function (e^x) of the numeric series input.

Syntax

series_exp(series)

Parameters

NameTypeRequiredDescription
seriesdynamic✔️An array of numeric values whose elements are applied as the exponent in the exponential function.

Returns

Dynamic array of calculated exponential function. Any non-numeric element yields a null element value.

Example

print s = dynamic([1,2,3])
| extend s_exp = series_exp(s)

Output

ss_exp
[1,2,3][2.7182818284590451,7.38905609893065,20.085536923187668]