|
|
| (2 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| | | | |
| − | *[[ Z3 | << Z3 Home ]]
| |
| − | *[[ Z%5E3_Language_Documentation | Z3 Language Documentation]]
| |
| − | *[[ Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member Functions]]
| |
| − |
| |
| − |
| |
| − | =={{anchor|Array.accumulate}}Array.accumulate(FromTotal)==
| |
| − |
| |
| − | Each element is accumulated using SUM with each element.
| |
| − |
| |
| − | ==Array.cumcolumns(Columns|empty)==
| |
| − |
| |
| − | Each element is accumulated by columns (for the specified columns,or all if none is specified) using SUM with each element. Initial Value of 0 is assumed.
| |
| − |
| |
| − | ==Array.cumrows(Rows|empty)==
| |
| − |
| |
| − | Each element is accumulated by rows for the specified rows, or all if none is specified) using SUM with each element. Initial Value of 0 is assumed.
| |
| − |
| |
| − | ==Array.cumcolumn(Columns|empty)==
| |
| − | Same as [[Array.cumcolumns]]
| |
| − |
| |
| − | ==Array.cumrow(Row|empty)==
| |
| − | Same as [[Array.cumrows]]
| |
| − |
| |
| − | ==Array.accumulatewith(SomeFunction, SomeStartingValue or Parameter List)==
| |
| − |
| |
| − | Each element is accumulated using given function with each element, and with the starting array as first input (if given).
| |
| − |
| |
| − | ==Array.cumcolumnswith(SomeFunction, SomeColumns ...)==
| |
| − |
| |
| − | [[Array.accumulatewith]] for each column.
| |
| − |
| |
| − | ==Array.cumrowswith(SomeFunction, SomeRows ...)==
| |
| − |
| |
| − | [[Array.accumulatewith]] for each row
| |
| − |
| |
| − | ==Array.cumcolumnwith(SomeFunction, SomeStartingValue or Parameter List)==
| |
| − |
| |
| − | Same as [[Array.accumulatewith]] for each column
| |
| − |
| |
| − | ==Array.cumrowwith==
| |
| − |
| |
| − | Same as [[Array.cumrowswith]] for each column
| |
| − |
| |
| − | ==Array.prototype.cumulate==
| |
| − |
| |
| − | [[Array.accumulatewith]] with function as NUMSUM
| |