How to create and name several excel files in a loop?
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
I need to save outputs of my code into excel files. As I need to do it for about 120 cases and may need to repeat it later, I was wondering how I can do this in a loop over the 120 cases saving the result for each case in a seperate excel file. I know that xlswrite creates file, but don't know how to automate it.
Any help is appreciated Jamal
0 件のコメント
採用された回答
Thorsten
2015 年 9 月 24 日
Just create a new filename in each loop and write to this file:
filename = sprintf('data%03d.xls', i);
4 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Manage Products についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!