how get date fromthe long number?
1 view (last 30 days)
Show older comments
Hi,
The following number represent date
1246573330
How get a date from it ? where I tried datenum,datestr, and datevec, but does not working
Thanks
2 Comments
Accepted Answer
Star Strider
on 23 Aug 2022
Moved: Steven Lord
on 23 Aug 2022
D = 1246573330;
DT1 = datetime(D, 'ConvertFrom','datenum')
DT2 = datetime(D, 'ConvertFrom','excel')
DT3 = datetime(D, 'ConvertFrom','posixtime')
DT4 = datetime(D, 'ConvertFrom','juliandate')
.
10 Comments
More Answers (0)
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!