How to add cell array elements iteratively?

7 ビュー (過去 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.
  1 件のコメント
Hassan Ashraf
Hassan Ashraf 2019 年 4 月 27 日
Thank you Geoff Hayes.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by