The cumSum command finds the cumulated sum of each column of a matrix (see also Section 5.3.26).
cumSum([[1,2],[3,4],[5,6]]) |
|
since the cumulated sums of the first column are: 1, 1+3=4, 1+3+5=9 and the accumulated sums of the second column are: 2, 2+4=6, 2+4+6=12.