如何使用当前日期作为名称CSV文件(How to use the current date as n

2019-10-19 15:59发布

如何创建日期为csv文件名的CSV文件。 我想这样做,但只有名称确实日期将不会出现。 语言是Scilab的这类似于Matlab的。

Answer 1:

我不完全明白你的问题。 但继csvWrite文档和日期文档。 你可以做些事情是这样

filename_with_date_string = date() + ".csv";
directory_path = TMPDIR;

// Some matrix you want to save
M = [1:10] * 0.1;     

// Create the file
file = fullfile(directory_path, filename_with_date_string);

// Fill it with your matrix
csvWrite(M, file);


文章来源: How to use the current date as name for a CSV file