How to change mat files in each iteration?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
armin m
el 13 de Dic. de 2021
Hi. I am writing code which save output in mat file. I wanna it saves mat file that name changes to specific name with date and time of writing.tnx for e.g.:
...
Save doc3.mat matrix Convert to
Save doc3040620211407.mat matrix Which says this file has been creatwd in date 04/06/2021 in time of 14:07. Tnx
1 comentario
Respuesta aceptada
Voss
el 14 de Dic. de 2021
You can try this:
file_name = 'doc3.mat';
file_name = [file_name(1:end-4) datestr(now(),'mmddyyyyhhMM') file_name(end-3:end)];
% then save mat file with name file_name
It wasn't clear from your example whether 04/06 means April 6 or 4 June, this command assumes the month is first. To do day first, swap the 'mm' and 'dd'.
7 comentarios
Image Analyst
el 14 de Dic. de 2021
Posters with little activity so far, like you, can (I believe) post up to 10 questions per day.
Más respuestas (0)
Ver también
Categorías
Más información sobre Dates and Time 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!