Math Sequence
Computes sum, average, min, max, median, range, and cumulative totals for numeric arrays.
Run tool
Form input
Direct JSON or Markdown
Submit JSON directly or Markdown that can be converted into JSON.
Work steps
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
values | array | Yes | Values |
Outputs
| Name | Type | Description |
|---|---|---|
count | integer | Count |
sum | integer | Sum |
average | number | Average |
median | number | Median |
cumulative | array | Cumulative |
work | array | Work |
Sample request
{
"values": [
5,
10,
15,
20
]
}