フィルターのクリア

save in a new file using 'save' command

12 ビュー (過去 30 日間)
aditi
aditi 2020 年 8 月 8 日
コメント済み: aditi 2020 年 8 月 8 日
I have a program which I am applying on 50 files. I want to now save output for everytime I run the program in a new file.
Currently, I am using "save outfile er2 -ascii"
But everytime program runs it replaces outfile with the current output parameters. But I want in a new file i.e. I want a file for every run of program.
Please help me out
  2 件のコメント
Stephen23
Stephen23 2020 年 8 月 8 日
編集済み: Stephen23 2020 年 8 月 8 日
aditi
aditi 2020 年 8 月 8 日
Thanks for your reply. Could you please explain a little bit. I am somewhat new to MATLAB SO it will be really helpful.

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

採用された回答

Stephen23
Stephen23 2020 年 8 月 8 日
編集済み: Stephen23 2020 年 8 月 8 日
If your function is called in a loop then follow the examples here:
If your function is not called in a loop then you could download my FEX submission nextname:
and use it something like this:
D = 'absolute/relative path to the directory where the files are to be saved';
F = nextname(fullfile(D,'outfile'),'01','.mat');
save(F,'er2')
It will ensure that the filename is unique and unused each time you save the data.
I don't recommend using save for writing text files. For writing text files you should use a more appropriate function:
  1 件のコメント
aditi
aditi 2020 年 8 月 8 日
Thank you so much.. It solved my problem.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by