How to sum two cells element by element?

4 views (last 30 days)
M
M on 19 Jul 2023
Edited: Matt J on 19 Jul 2023
How to sum two cells element by element by one shot?
if there is a cell A and its size(6,9) and cell B and its size(6,9).
how to do the sumation of A and B element by element?
for example:
sum A{1,1} and B(1,1}
sum A{1,2} and B(1,2} and so on...
and store all the results in another cell

Accepted Answer

Matt J
Matt J on 19 Jul 2023
Edited: Matt J on 19 Jul 2023
One way,
A={1,2}, B={10,20},
A = 1×2 cell array
{[1]} {[2]}
B = 1×2 cell array
{[10]} {[20]}
C=cellfun(@plus, A,B,'uni',0)
C = 1×2 cell array
{[11]} {[22]}
  1 Comment
Matt J
Matt J on 19 Jul 2023
Edited: Matt J on 19 Jul 2023
Although, it is of course ill-advised to sum cell array contents if they can instead be organized into numerical arrays.

Sign in to comment.

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!