How to get yr, month, day, hr, min and s stored as separate variables from a serial date number?

1 visualización (últimos 30 días)
I have a vector of serial date numbers (such as 37987.0108217593) and I need to convert each one into year, month, day hr, min second. Example 37987.0108217593 would be year=2004, month=1, day=2, hour=0, min=29 and seconds=20. So I would have a vector called year, a vector called month etc.
Any help will be greatly appreciated!

Respuesta aceptada

Steven Lord
Steven Lord el 20 de Ag. de 2018
That's close to what you get using the Excel datetime type, but not quite.
>> D = datetime( 37987.0108217593, 'ConvertFrom', 'excel')
D =
datetime
01-Jan-2004 00:15:35
When I paste that number into an Excel worksheet and format it as a Date, the result matches D rather than the information you posted.
If you really do need the datetime broken into its constituent parts you can use the datevec function on D, but there may be a way to achieve your ultimate goal without needing to perform this splitting. If you describe how you want to use this data we may be able to offer suggestions for how to achieve your goal without datevec.
  3 comentarios
Steven Lord
Steven Lord el 20 de Ag. de 2018
Which release are you using? If you're using release R2013b or later, consider reading your data in using readtable instead of xlsread. If you do, depending on which release you're using you may be able to read the dates into a table directly from Excel using the 'DatetimeType', 'exceldatenum' name-value pair argument.
Jing Ci Neo
Jing Ci Neo el 21 de Ag. de 2018
I wasn't able to use readtable successfully but managed to manipulate the data in excel. Thanks for your help anyway! I really appreciate it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Time Series Objects en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by