Problem in converting datetime to POSIX and then the same POSIX back to datetime
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Haris K.
il 16 Mag 2020
Commentato: Haris K.
il 20 Mag 2020
Given that I have specified the time zone in t, could you please explain why the last row will not convert it back to 'XXXX-XX-XX 10:05:24', but to 'XXXX-XX-XX 09:05:24'?
t = datetime('2016-07-29 10:05:24', 'TimeZone','Europe/London') + calmonths(1:3) %-> ZONED datetime
p = posixtime(t)
datetime(p, 'ConvertFrom', 'posixtime')
0 Commenti
Risposta accettata
Jyotsna Talluri
il 20 Mag 2020
While converting the posixtime to datetime specify the TimeZone using name-value pair,If not specified the posix times are considered as UTC times due to which you are not getting correct results.
z = datetime(p, 'ConvertFrom', 'posixtime', 'TimeZone','Europe/London');
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Dates and Time in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!