How to avoid dates being writen in scientific notation?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kian
am 10 Aug. 2015
Kommentiert: Walter Roberson
am 11 Aug. 2015
I made my dates using:
m(1,1) = str2num(datestr([2015,8,10,12,0,0],'yyyymmddhhMM'));
which writes date in scientific notation into m. Is there any way to avoid that? I want my dates to be as simple as 201508101200 in m.
1 Kommentar
Walter Roberson
am 11 Aug. 2015
Isn't this the same question as http://uk.mathworks.com/matlabcentral/answers/233121-problem-writing-in-data-into-a-csv-using-fprintf ?
Akzeptierte Antwort
Jeff E
am 10 Aug. 2015
If you really want it as an integer:
m = uint64(str2num(datestr([2015,8,10,12,0,0],'yyyymmddhhMM')));
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Dates and Time finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!