Clear Filters
Clear Filters

sum of doubles into cell arrays

1 view (last 30 days)
Mori
Mori on 13 Jul 2016
Edited: the cyclist on 13 Jul 2016
I have a cell, called A with 1*7 cell, then each cell has 1*3 other cells and each of them has 10* 1300 doubles.
I want cell B with 1*7 cell, each cell has 1*3 cell and each of them has sum of columns (1*1300).
  1. Thanks

Accepted Answer

the cyclist
the cyclist on 13 Jul 2016
Edited: the cyclist on 13 Jul 2016
B = cellfun(@(x)cellfun(@(y)sum(y),x,'UniformOutput',false),A,'UniformOutput',false)

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!