Produces a row of the sums of each column of the input table.
COLSUM(a)
a |
- |
A series or table. |
A one-row table with the same number of columns as the input table.
a = {{2, 4, 6},
{8, 10, 12}}
b = colsum(a)
b == {{10, 14, 18}}