How can i use 'sum' for a 'cell array'?

65 views (last 30 days)
Hello
i have a cell array that i want to sum the coulmns ;
A={ 1x2 double , 1x2 double
1x2 double , 1x2 double
1x2 double , 1x2 double
1x2 double , 1x2 double }

Accepted Answer

KSSV
KSSV on 7 May 2019
A = cell(4,2) ;
for i = 1:4
for j = 1:2
A{i,j} = rand(1,2) ;
end
end
B = cellfun(@sum,A)

More Answers (1)

madhan ravi
madhan ravi on 7 May 2019
sum(cat(1,A{:}),2)

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!