How to get UTC time in my program?
51 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Benson Gou
am 12 Jul. 2020
Kommentiert: Charalambos Hadjipanayi
am 1 Feb. 2023
Dear All,
I am wondering if it is pissible to get the UTC time in my program. Do I need the internet avaibale if I want to get UTC time?
Thanks a lot.
Benson
0 Kommentare
Akzeptierte Antwort
Star Strider
am 12 Jul. 2020
Try this:
dtLCL = datetime('now', 'TimeZone','local') % Current Local Time
dtUTC = datetime(dtLCL, 'TimeZone','Z') % Current UTC Time
That will give you both the local time and the corresponding UTC time.
.
5 Kommentare
Charalambos Hadjipanayi
am 1 Feb. 2023
This gives you a simple network time, which does not rely on local computer time:
url_time = webread('http://worldtimeapi.org/api/timezone/Etc/UTC')
Weitere Antworten (1)
Vini Lima
am 25 Mär. 2022
utc_time = datetime('now', 'timezone', 'utc')
1 Kommentar
Charalambos Hadjipanayi
am 1 Feb. 2023
This just converts your local computer time to UTC. So if your local computer time is incorrect for any reason, the utc_time will be also incorrect.
Siehe auch
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!