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 个)

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

7 个评论

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).
thank you sir Image Analyst couldn't get rid of this habit
Giving error as
Attempt to grow array along ambiguous dimension.
Two thoughts

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Loops 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