How to convert datetime('today') into utc format. Preferably [YYYY MM DD 12 0 0].

 Respuesta aceptada

Star Strider
Star Strider el 24 de Jun. de 2020

2 votos

Try this:
T = datetime('now', 'Format','yyyy MM dd HH mm ss', 'TimeZone','local') % Local Time Zone
T.TimeZone = 'Z' % Convert To UTC
producing:
T =
datetime
2020 06 23 18 19 09
T =
datetime
2020 06 24 00 19 09
.

3 comentarios

Nathan Jalal
Nathan Jalal el 24 de Jun. de 2020
Thank you very much! Is there anyway to make sure the comes in [YYYY MM dd 12 0 0]? I need the hour, minute, and seconds to be those values exactly.
Star Strider
Star Strider el 24 de Jun. de 2020
My pleasure!
I thought that was just a formatting example.
I’m still not certain what you want.
Try this:
T = datetime('now', 'Format','yyyy MM dd 12 0 0', 'TimeZone','local') % Local Time Zone
T.TimeZone = 'Z' % Convert To UTC
Walter Roberson
Walter Roberson el 24 de Jun. de 2020
dateshift to start of hour or day.
If you need "noon" then dateshift to start of day and then add hours(12)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 23 de Jun. de 2020

Comentada:

el 24 de Jun. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by