Constructing saved file name with variables from code
1 ビュー (過去 30 日間)
表示 古いコメント
Hi all
I currently have a save command which labels the saved files with a static name which I change each time
If I have variables such as:
k = 1:10
I= 1:5:100
Date/Time
How can I code this so each file name takes this information for the name,
i.e something like
Test_File %datestr(now,30) plus the others.
Thanks for your help!
0 件のコメント
回答 (2 件)
Renato Agurto
2016 年 3 月 17 日
Do you meansomething like this?
ext = '.mat'; %or .cvs, .xlsx, ...
file_name = ['Test_File_' datestr(now,30) '_' num2str(k) '_' num2str(I) ext];
0 件のコメント
Guillaume
2016 年 3 月 17 日
filename = sprintf('Test_File_%s_%d_%d.mat', datestr(now, 30), k, i);
0 件のコメント
参考
カテゴリ
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!