How to convert specified time to GMT/UTC?

94 次查看(过去 30 天)
i want to convert datetime({'18-Oct-2023 17:40:00' '18-Oct-2023 18:00:00'},'TimeZone','+05:00') to GMT or UTC?
required result below:
'18-Oct-2023 12:40:00' '18-Oct-2023 01:00:00'

采纳的回答

Star Strider
Star Strider 2023-10-18
编辑:Star Strider 2023-10-18
Try this —
DT = datetime({'18-Oct-2023 17:40:00' '18-Oct-2023 18:00:00'},'TimeZone','+05:00')
DT = 1×2 datetime array
18-Oct-2023 17:40:00 18-Oct-2023 18:00:00
DT_UTC = DT;
DT_UTC.TimeZone = 'UTC' % Copnmvert To UTC
DT_UTC = 1×2 datetime array
18-Oct-2023 12:40:00 18-Oct-2023 13:00:00
DT_UTC.Format = 'dd-MMM-yyyy hh:mm:ss' % Convert To 12-Hour Time
DT_UTC = 1×2 datetime array
18-Oct-2023 12:40:00 18-Oct-2023 01:00:00
EDIT — Added 12-Hour time conversion
.

更多回答(1 个)

Florian Bidaud
Florian Bidaud 2023-10-18
编辑:Florian Bidaud 2023-10-18
https://uk.mathworks.com/help/matlab/ref/datetime.html#buhzxmk-1-TimeZone
date = datetime({'18-Oct-2023 17:40:00' '18-Oct-2023 18:00:00'},'TimeZone','+05:00')
date = 1×2 datetime array
18-Oct-2023 17:40:00 18-Oct-2023 18:00:00
datetime(date, 'TimeZone', 'UTC', 'Format', 'dd-MMMM-yyyy hh:mm:ss')
ans = 1×2 datetime array
18-October-2023 12:40:00 18-October-2023 01:00:00
datetime(date, 'TimeZone', 'Europe/London', 'Format', 'dd-MMMM-yyyy hh:mm:ss')
ans = 1×2 datetime array
18-October-2023 01:40:00 18-October-2023 02:00:00

类别

Help CenterFile Exchange 中查找有关 Dates and Time 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by