Array.aggregate()

From ZCubes Wiki
Revision as of 20:02, 20 March 2020 by Joseph (talk | contribs) (Created page with "* << Z3 Home * Z3 Language Documentation * Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member F...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Array.aggregate (Columns,Function, Params)

Aggregates rows by unique values in column 1, with given function to columns with the parameters specified.

IM(4)

  .fillwith(1..4)
  .aggregate(3,SUM)

gives

1 16

Total of column 3 for each row where first row has a unique value, which in this case is 1.

1 2 3 4

1 2 3 4

1 2 3 4

1 2 3 4


See Also