How can I create a .txt files from a cellarray that is 80x1 into 80 different files with the same name with different number in the end?

2 次查看(过去 30 天)
LF{80x1} cell array
writematrix(LF{#},'LF#.txt','Delimiter','\t');
type LF#.txt
I want to create an inidvidual .txt file for each cell of the cell array with a succession of numbers without changing manually.
For example
cell array 1
LF{1} that creates a .txt file named LF1.txt

采纳的回答

Walter Roberson
Walter Roberson 2023-11-8
for K = 1 : numel(LF)
filename = "LF" + K + ".txt";
writematrix(LF{K}, filename, 'Delimiter', '\t');
end

更多回答(0 个)

标签

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by