Why won't datetime work for 0:00?
18 views (last 30 days)
Show older comments
I have this code to help format a list of dates/times in a CSV file:
datfmt = '%s%s%s%s%f%s%s%s%d%s%f%s';
celldata = textscan(fid,datfmt,'Headerlines',1,'Delimiter',',');
dates = datetime(celldata{3});
When I try to write an output file using:
for iline = 1:length(dates)
fprintf(fid,'%s\n',dates(iline));
end
the dates/times at the 0:00 mark don't read out with both the dates/times, only the dates (formatted differently than all the other values too). Why is this happening?
0 Comments
Accepted Answer
Walter Roberson
on 9 Jun 2023
datetime('01/31/1983'), ans.Format
datetime('01/31/1983 00:00'), ans.Format
datetime('01/31/1983 17:45'), ans.Format
What is happening is that when you do not supply a Format, the default format for time 00:00 is just the date without the time. If you want the time as well, specify a format specifically
datetime('01/31/1983 00:00', 'Format', 'dd-MMM-uuuu HH:mm:ss'), ans.Format
1 Comment
Peter Perkins
on 17 Jul 2023
Walter is right, but even MORE right would be to say, "CSV? use readtable, and tell it to read those timestamps directly into a datetime variable." textscan is not your friend.
More Answers (1)
the cyclist
on 9 Jun 2023
It's not easy to debug this without seeing the data, but I would suggest explicitly adding a 'Format' Name-Value input to this line
dates = datetime(celldata{3});
so that that those dates are forced to include the time.
0 Comments
See Also
Categories
Find more on Dates and Time in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!