Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
Switch services using the Version drop-down list. Learn more about navigation.
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Calculates the element-wise base-e exponential function (e^x) of the numeric series input.
Syntax
series_exp(series)
Learn more about syntax conventions.
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] |