sum of doubles of different cells

조회 수: 2 (최근 30일)
Mori
Mori 2016년 7월 13일
댓글: Mori 2016년 7월 13일
I have two cells (A & B) which each of them has 5*1 cell and each cell 26*1 doubles. How I sum A and B doubles with together into cell C with 5*1 cell and each cell 26*1 doubles.

채택된 답변

Elias Gule
Elias Gule 2016년 7월 13일
This function should do what you want.
function C = cellsum(A,B)
if iscell(A) && iscell(B)
C = cellfun(@(x,y) cellsum(x,y),A,B,'uniform',false);
else
if isnumeric(A) && isnumeric(B)
C = A + B;
else
C = {}; %%Alternatively, throw an error if you like
end
end
  댓글 수: 1
Mori
Mori 2016년 7월 13일
thank you, working great.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2016년 7월 13일
C=cellfun(@(x,y) x+y,A,B,'un',0)

카테고리

Help CenterFile Exchange에서 Time Series에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by