Put a variable in a file title name
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
yusra Ch
el 18 de Oct. de 2020
Comentada: yusra Ch
el 18 de Oct. de 2020
Hello,
I want to run a for loop that has an id=1:100 and at the end of each iteration I want matlab to save the results under a file name "Trace_id". So at the end of the programe I will have files called Trace_1 , Trace_2 ,etc...
Thank you
1 comentario
Respuesta aceptada
Ameer Hamza
el 18 de Oct. de 2020
Editada: Ameer Hamza
el 18 de Oct. de 2020
Something liks this
for id=1:100
% do your processing
M; % matrix to write to file
filename = sprintf('Trace_%d', id);
writematrix(M, filename)
end
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!