How to save each iteration in cell array?

I am using for loop for each folders to save the value in each iteration. But, the problem is: it overrides the value and save only last iteration. How do I save each iteration in cell array for each folder in for loop?

回答 (1 件)

madhan ravi
madhan ravi 2018 年 10 月 24 日
編集済み: madhan ravi 2018 年 10 月 24 日

0 投票

c=cell(zeros(1,12))
for ii = 1:12. %edited after sir Image Analyst's comment
c{ii}= %do something;
end

7 件のコメント

Image Analyst
Image Analyst 2018 年 10 月 24 日
To avoid problems when one might encounter complex numbers, it's usually advised to use "k" or "index" or "ii" or something for the loop iterator variable instead of i and j (the imaginary variables).
madhan ravi
madhan ravi 2018 年 10 月 24 日
thank you sir Image Analyst couldn't get rid of this habit
sam moor
sam moor 2018 年 10 月 24 日
Giving error as
Attempt to grow array along ambiguous dimension.
madhan ravi
madhan ravi 2018 年 10 月 25 日
Upload your code
sam moor
sam moor 2018 年 10 月 25 日
Attached the code
sam moor
sam moor 2018 年 10 月 29 日
any thoughts??
per isakson
per isakson 2018 年 10 月 29 日
Two thoughts

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

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

質問済み:

2018 年 10 月 24 日

コメント済み:

2018 年 10 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by