How to save each iteration in cell array?
1 回表示 (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
回答 (1 件)
madhan ravi
2018 年 10 月 24 日
編集済み: madhan ravi
2018 年 10 月 24 日
c=cell(zeros(1,12))
for ii = 1:12. %edited after sir Image Analyst's comment
c{ii}= %do something;
end
7 件のコメント
per isakson
2018 年 10 月 29 日
Two thoughts
- Always provide the full error message. output is assigned values in many places
- See Debug a MATLAB Program and Examine Values While Debugging. It's tricky to spot the problem without being able to run the code.
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!