Convert Serial numbers to conventional date

Hi,
I would like to convert these serial number 17067072 to conventional date such as mm-dd-yyyy.
I have a column vector of such dates to convert. I downloaded data in netCDF format, converted to ASCII and now have to convert the dates for easy interpretation.
I could convert using 'datestr' but my dates have 8 values as above.
I appreciate your effort.
Thanks.

1 comentario

ASONG ZILEFAC
ASONG ZILEFAC el 4 de Nov. de 2012
The data I downloaded is on a daily basis and spans between 1948 to 2011 on a daily timescale.

Iniciar sesión para comentar.

 Respuesta aceptada

Walter Roberson
Walter Roberson el 4 de Nov. de 2012

3 votos

datestr() can handle column vectors of serial date numbers.

Más respuestas (1)

per isakson
per isakson el 4 de Nov. de 2012
Editada: per isakson el 5 de Nov. de 2012
NetCDF files are supposed to be self-documented. Is it "serial hour numbers"?
>> datestr( 17067072, 31 )
ans =
6728-01-21 00:00:00
>> datestr( 17067072/24, 31 )
ans =
1947-01-01 00:00:00

2 comentarios

ASONG ZILEFAC
ASONG ZILEFAC el 5 de Nov. de 2012
Hi Per,
It works well for this case. What if I have a column vector?
Thank so much.
Walter Roberson
Walter Roberson el 5 de Nov. de 2012
Try it and see.

Iniciar sesión para comentar.

Categorías

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by