Convert Datetime to UTC

160 Ansichten (letzte 30 Tage)
Nathan Jalal
Nathan Jalal am 23 Jun. 2020
Kommentiert: Walter Roberson am 24 Jun. 2020
How to convert datetime('today') into utc format. Preferably [YYYY MM DD 12 0 0].

Akzeptierte Antwort

Star Strider
Star Strider am 24 Jun. 2020
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 Kommentare
Star Strider
Star Strider am 24 Jun. 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 am 24 Jun. 2020
dateshift to start of hour or day.
If you need "noon" then dateshift to start of day and then add hours(12)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Dates and Time finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by