Takes an array of numeric values, and returns an array containing the running totals from summing the elements in the original array.
Example:
subtotals([1,9,2,10,3,8,5]) -> [1,10,12,22,25,33,38]
In: Contents >> Working with equations >> Functions >> Built-in functions