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
| Name | Type | Required | Description |
|---|---|---|---|
| series | dynamic | ✔️ | 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
| s | s_exp |
|---|---|
| [1,2,3] | [2.7182818284590451,7.38905609893065,20.085536923187668] |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.