saving files in a loop with different names

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 comentarios

Geoff Hayes
Geoff Hayes el 15 de Jun. de 2021
hesam - how should each file be named? What is the naming convention that you wish to adopt for your files?
h k
h k el 15 de Jun. de 2021
it does not matter
The name of the (info.dat) plus one to 20
example (info1.dat, info2.dat, ...)

Iniciar sesión para comentar.

 Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Entering Commands en Centro de ayuda y File Exchange.

Preguntada:

h k
el 15 de Jun. de 2021

Comentada:

el 15 de Jun. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by