Azzera filtri
Azzera filtri

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 visualizzazioni (ultimi 30 giorni)
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

Risposta accettata

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

Più risposte (0)

Tag

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by