sum values in a cell array
조회 수: 272 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2016년 4월 29일
편집: Azzi Abdelmalek
2016년 4월 29일
sum([a{:}])
or you can use cell2mat
b=cell2mat(a)
out=sum(b)
댓글 수: 0
추가 답변 (1개)
BINGXIN YAN
2021년 7월 12일
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.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!