How to add cell array elements iteratively?

조회 수: 5 (최근 30일)
Hassan Ashraf
Hassan Ashraf 2019년 4월 27일
댓글: Hassan Ashraf 2019년 4월 27일
I have a cell array of 36 elements and each element is a image of 25x256 unit8 dimension. I want to add all these elements iteratively. I am able to do so by adding one by one but unable to add them in a loop. I am getting the error shown in below picture.111.png

채택된 답변

Geoff Hayes
Geoff Hayes 2019년 4월 27일
Hassan - first, please rename the sum variable since there is a built-in MATLAB function of the same name. If you want to add all of these matrices together (assuming that all are 25x256) then just do
compositeImage = im{1};
for k=2:length(im)
compositeImage = compositeImage + im{k};
end
In your code, you are getting an error because you should be referencing im instead of sum when adding the kth image...since it is im that is the cell array.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by