How to Convert milliseconds to dd:mm:yyyy hh:mm:ss?
40 次查看(过去 30 天)
显示 更早的评论
I have rows that contains 'gregorian' Date and time for each observation in milliseconds since 1970-01-01 00:00:00.0 UTC.
How can I convert this millisecond into dd:mm:yyyy hh:mm:ss?
0 个评论
采纳的回答
Andrei Bobrov
2018-5-23
T = datetime(1970,1,1,0,0,0,0,'TimeZone','UTC','F','uuuu-MM-dd''T''HH:mm:ss.SSS Z');
addMS = milliseconds(cumsum([0;randi(2e8,10,1)]));
out = T + addMS;
更多回答(2 个)
Walter Roberson
2018-5-23
You might be able to use datetime() with 'convertfrom', 'posixtime'
Or see https://www.mathworks.com/matlabcentral/answers/6117-convert-date-to-unix-time#answer_8508 for the opposite way, which you could then invert.
3 个评论
Walter Roberson
2018-5-23
>> datetime(1504224000,'convertfrom','posixtime')
ans =
01-Sep-2017 00:00:00
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calendar 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!