How to make filename that message + date&time using [imwrite function].
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Junwon Park
le 5 Juin 2018
Modifié(e) : Stephen23
le 5 Juin 2018
The MATLAB code is {imwrite(red, datestr(now,'yyyy-mm-dd HH-MM-SS-FFF'),'png');}
I want to make file name "test_yyyy-mm-dd HH-MM-SS-FFF".png
Please, Let me know the method.
Thanks.
0 commentaires
Réponse acceptée
Kodavati Mahendra
le 5 Juin 2018
Modifié(e) : Kodavati Mahendra
le 5 Juin 2018
filename = strcat(datestr(now,'yyyy-mm-dd HH-MM-SS-FFF'),'.png');
imwrite(red, filename);
Solved? Problem was with the syntax for imwrite :-)
Edit 1:
filename = strcat('Test_',datestr(now,'yyyy-mm-dd HH-MM-SS-FFF'),'.png');
imwrite(red, filename);
Now?
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Hypothesis Tests dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!