sum of array in structure.

조회 수: 3 (최근 30일)
Pramit Biswas
Pramit Biswas 2018년 1월 3일
댓글: Elias Gule 2018년 1월 16일
uC = zeros(1,length(X));
for loop1 = 1:length(X)
uC(loop1) = sum(X(loop1).Y);
end
Any other/proper/quick way to do this? (Note: length of all X.Y is not same.)

채택된 답변

Elias Gule
Elias Gule 2018년 1월 3일
try this.
uC = arrayfun(@(v) sum(v.Y),x)
  댓글 수: 4
Pramit Biswas
Pramit Biswas 2018년 1월 3일
oops!!! Is this function only to reduce code? Any other ways?
Elias Gule
Elias Gule 2018년 1월 16일
Yep!

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by