Add matrix columns as vector
I've got a matrix with i rows and j columns. I'd like to add all i scalars in column 0 as the 0th element in a new j-element vector, and add all i scalars in column 1 as the 1th element etc..
How? The column operator seems to require an integer, not a range variable to select the column.

