sum values in a cell array

376 views (last 30 days)
elisa ewin
elisa ewin on 29 Apr 2016
Answered: BINGXIN YAN on 12 Jul 2021
Hello! I have
a={0.006;0.45;0.1;0.23;0.12}
and I want to sum all the values in a, how can i do?

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 29 Apr 2016
Edited: Azzi Abdelmalek on 29 Apr 2016
sum([a{:}])
or you can use cell2mat
b=cell2mat(a)
out=sum(b)

More Answers (1)

BINGXIN YAN
BINGXIN YAN on 12 Jul 2021
What if the cell is more complicated?
I have a{1,1}=[1,1];a{1,2}=[0,1];a{1,3}=[2,5],
and I want to sum all the values in a{1,:}(1), for example
a{1,1}(1)+a{1,2}(1)+a{1,3}(1)=1+0+2, how can I do except restoring a{1,:}(1) in another matrix or array.

Categories

Find more on Cell 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!