MATLAB: How to add rows of a cell

cell

I have a cell of size 9×3. How can I add all the rows of this cell, and get 3(number of columns) separate arrays out of this cell. and allocating each array a title, like (xx, yy , zz).

Best Answer

then try this:
% Add columns
xx = sum([ca{:, 1}])
yy = sum([ca{:, 2}])
zz = sum([ca{:, 3}])