How can I Use writecell with a dynamically changing file save name?

3 次查看(过去 30 天)
Hello all,
I am analyzing hundreds of gigabytes of BLF Data and I am converting the BLF files into CSV files using writecell. The issue I face right now, is that I need to run each file one by one because the CSV file that prints out is a static file name. (In my case I just have it write to "final.csv") But I want the new CSV file name to match the original BLF file name. Currently my script can integrate through a folder with multiple BLF files but that isnt very useful because it only outputs one csv file.
output = [header; num2cell(data)];
writecell(output,baseFileName.csv);
output is my final cell with the required data. I tried using the method above, but you cannot use "dot indexing" with writecell. Pretty much I need a dynamic writecell file name but I have no clue how to get it. Let me know if clarification is needed.

采纳的回答

Jan
Jan 2022-3-16
编辑:Jan 2022-3-16
Maybe you mean:
writecell(output, [baseFileName, '.csv']);
baseFileName.csv would be the field 'csv' of a struct called baseFileName.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Scope Variables and Generate Names 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by