How to add rows of a cell

2 views (last 30 days)
Asim Ismail
Asim Ismail on 7 Sep 2017
Commented: Asim Ismail on 7 Sep 2017
I have a cell of size 9x3. 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).

Accepted Answer

Image Analyst
Image Analyst on 7 Sep 2017
then try this:
% Add columns
xx = sum([ca{:, 1}])
yy = sum([ca{:, 2}])
zz = sum([ca{:, 3}])

More Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!