how deal with time stamp with unix seconds?

1 visualización (últimos 30 días)
huda nawaf
huda nawaf el 26 de Mayo de 2012
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

Respuesta aceptada

James Tursa
James Tursa el 26 de Mayo de 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 comentarios
huda nawaf
huda nawaf el 26 de Mayo de 2012
thanks,
now hoe get just 04-Dec-1997?
James Tursa
James Tursa el 26 de Mayo de 2012
datestr(floor(881250949/86400 + datenum('1/1/1970')))

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Dates and Time en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by