Borrar filtros
Borrar filtros

How to convert date to day number?

7 visualizaciones (últimos 30 días)
miguel angel torres quintero
miguel angel torres quintero el 28 de Jul. de 2017
Comentada: Jan el 1 de Ag. de 2017
Hello I wanna convert a date to day number. For example: 2012-Junuary-12 is equal to 12 days (we are talking about 12 days passed of 365 day) I don´t refer to Julian Day.
  3 comentarios
James Tursa
James Tursa el 28 de Jul. de 2017
Editada: per isakson el 28 de Jul. de 2017
@Jan: Julian Date and Day Of Year are two different things. Julian Date has a very specific meaning. E.g. from the USNO:
Or if you prefer Wiki
Jan
Jan el 1 de Ag. de 2017
Thanks, James. I hoped that the OP explain maore details also, e.g. how the input is represented and why he mentions the Julian Day.

Iniciar sesión para comentar.

Respuestas (1)

Steven Lord
Steven Lord el 28 de Jul. de 2017
dt = datetime('2012-January-12')
day(dt, 'dayofyear')
  2 comentarios
Andrei Bobrov
Andrei Bobrov el 28 de Jul. de 2017
+1
Peter Perkins
Peter Perkins el 1 de Ag. de 2017
And also:
>> dt = datetime(2012,1:3,12)
dt =
1×3 datetime array
12-Jan-2012 12-Feb-2012 12-Mar-2012
>> dt.Format = 'yyyy:D'
dt =
1×3 datetime array
2012:12 2012:43 2012:72

Iniciar sesión para comentar.

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by