Borrar filtros
Borrar filtros

convert int32 dates to matlab date (datenum)

3 visualizaciones (últimos 30 días)
Sri Adiyanti
Sri Adiyanti el 3 de Abr. de 2023
Comentada: Peter Perkins el 5 de Abr. de 2023
Hi,
I work on netcdf4 file of a 2D model output. Date datatype is int32, how can I convert this into matlab date (datenume) or datetime?
Thanks.

Respuestas (1)

Stephen23
Stephen23 el 3 de Abr. de 2023
Editada: Stephen23 el 3 de Abr. de 2023
"Date datatype is int32"
You did not tell us the most important information, which is the epoch and step size.
Assuming that those dates are UNIX format (ie. epoch 1st Jan 1970, 1 second steps) then use DATETIME like this:
U = uint32(1680508182)
U = uint32 1680508182
D = datetime(U,'convertfrom','posix')
D = datetime
03-Apr-2023 07:49:42
  1 comentario
Peter Perkins
Peter Perkins el 5 de Abr. de 2023
Stephen kind of buried the lede, which was "use DATETIME", not datenum.

Iniciar sesión para comentar.

Categorías

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

Etiquetas

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by