フィルターのクリア

How to use variables as filename when saving to a .csv file

3 ビュー (過去 30 日間)
JB
JB 2015 年 11 月 4 日
コメント済み: Image Analyst 2015 年 11 月 4 日
Hello, I have a program,which takes start date and end date from user,I would like to use the variables as the filename when outputing to a .csv file. I have the following variables :
start_date =[2015, 1, 1];
end_date = [2015, 1, 2];
I want my csv file to be saved in this manner:
output_filename = "start_date " -- "end_date"--"data".csv.
Note: start_date is 1x6 double and end_date is 1x3 double and outputfilename is storing file name to be saved.
Thanks alot in advance.

採用された回答

Thorsten
Thorsten 2015 年 11 月 4 日
編集済み: Thorsten 2015 年 11 月 4 日
output_filename = [datestr(datenum(start_date), 'yyyy-mm-dd') ' -- ' datestr(datenum(end_date), 'yyyy-mm-dd') '--data.csv']
  2 件のコメント
JB
JB 2015 年 11 月 4 日
Thanks alot, i was not considering 'datenum' in account. Thanks again..
Image Analyst
Image Analyst 2015 年 11 月 4 日
If you're used to C, you might find it easier to use sprintf() to create the filename.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWorkspace Variables and MAT-Files についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by