convert timestamp include hours,minuts,second to real date
1 次查看(过去 30 天)
显示 更早的评论
*hi,
how convert this timestamp into real date?
ex.
1162160236000
datester, datenum do not work with it.
thanks in advance*
回答(1 个)
Walter Roberson
2013-3-30
29th instead of 27th? Sorry I cannot explain that one. If you had said 9 days after the 27th then I could have guessed that leap years were not being taken into account, but a difference of exactly 2 days does not make any sense to me.
The conversion I did was
TS = 1162160236000;
datestr(datevec(TS/60/60/24/1000) + [1970 0 0 0 0 0])
The 1970 is in accordance with the Unix time convention of using time since the beginning of 1970.
If the difference had been 12 to 13 days, it could have represented an adjustment for the years ending in 00 not being leap years unless they were also divisible by 400. But 2 days off, I am at a loss for.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!