how deal with time stamp with unix seconds?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
hi, I got dataste has time stamp with unix seconds since 1/1/1970 UTC ex. this no. 881250949 is date ,but I do not know which date. are there function in matlab deal with such time stamp?
I visited this link about it , but not get what I need http://www.mathworks.com/matlabcentral/newsreader/view_thread/93932
thanks in advance
0 Commenti
Risposta accettata
James Tursa
il 26 Mag 2012
Everything you need is in the link you provided. E.g.,
>> datestr(881250949/86400 + datenum('1/1/1970'))
ans =
04-Dec-1997 15:55:49
This would be UTC, not accounting for leap seconds.
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Dates and Time in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!