Filter löschen
Filter löschen

saving files in a loop with different names

22 Ansichten (letzte 30 Tage)
h k
h k am 15 Jun. 2021
Kommentiert: Stephen23 am 15 Jun. 2021
hello
in my code created one file is name (info.dat)
I have save every file has created.
File content attached
for k = 1:20
...
% here created (info.dat)
...
end
  3 Kommentare
h k
h k am 15 Jun. 2021
it does not matter
The name of the (info.dat) plus one to 20
example (info1.dat, info2.dat, ...)

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Scott MacKenzie
Scott MacKenzie am 15 Jun. 2021
for k=1:20
...
filename = sprintf('info%d.dat', k);
writematrix(M, filename); % data in M
...
end

Weitere Antworten (0)

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by