series_product()
Learn how to use the series_product() function to calculate the product of series elements.
Calculates the product of series elements.
Syntax
series_product(series)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| series | dynamic | ✔️ | Array of numeric values. |
Returns
Returns a double type value with the product of the elements of the array.
Example
print arr=dynamic([1,2,3,4])
| extend series_product=series_product(arr)
Output
| s1 | series_product |
|---|---|
| [1,2,3,4] | 24 |
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.