converting MJD in UT1 to calender date
49 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how could I convert 2017 January 00:00:00.5912977 which is MJD 57754 in UT1 to year,month,day,hour,,,,,,seconds
1 comentario
James Tursa
el 23 de Nov. de 2024 a las 0:34
Editada: James Tursa
el 23 de Nov. de 2024 a las 1:57
Note: If you are trying to convert to/from UTC and UT1, then you will have to interpolate the UT1-UTC data from this source:
E.g., the finals2000A.all file.
Respuestas (1)
Voss
el 20 de Mayo de 2022
Editada: Voss
el 20 de Mayo de 2022
Convert 2017 January 00:00:00.5912977 to year,month,day,hour,,,,,,seconds, as requested:
dt = datetime('2017 January 00:00:00.5912977', ...
'InputFormat','yyyy MMMM hh:mm:ss.SSSSSSS', ...
'Format','yyyy,MM,dd,hh,,,,,,ss')
Various conversions from MJD 57754, since that was mentioned:
dt = datetime(57754,'Format','yyyy MMMM dd hh:mm:ss.SSSSSSS','ConvertFrom','MJD')
dt = datetime(57754,'Format','yyyy MMMM hh:mm:ss.SSSSSSS','ConvertFrom','MJD')
dt = datetime(57754,'Format','yyyy,MM,dd,hh,mm,ss','ConvertFrom','MJD')
dt = datetime(57754,'Format','yyyy,MM,dd,hh,,,,,,ss','ConvertFrom','MJD')
0 comentarios
Ver también
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!