How to make filename that message + date&time using [imwrite function].
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Kodavati Mahendra
2018 年 6 月 5 日
編集済み: Kodavati Mahendra
2018 年 6 月 5 日
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?
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Hypothesis Tests についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!