how to convert data in UTC to a specific local time

조회 수: 50 (최근 30일)
Saeed Bello
Saeed Bello 2016년 8월 24일
댓글: Saeed Bello 2016년 8월 26일
I have a one-year hourly data in UTC time. How do I convert the data to a specific local time say for example -5 UTC.

채택된 답변

Peter Perkins
Peter Perkins 2016년 8월 25일
UTC-5 is likely NOT your local time zone, since most locales shift for daylight saving. That's a detail many people forget.
You may be starting from timestamps in the form of text. If you use datetime, converting from UTC to local time is as easy as setting the TimeZone property, and datetime automatically accounts for daylight saving changes:
>> d = datetime({'25-Feb-2016 13:20:44' '25-Aug-2016 13:20:44'},'TimeZone','UTC')
d =
25-Feb-2016 13:20:44 25-Aug-2016 13:20:44
>> d.TimeZone = 'America/New_York'
d =
25-Feb-2016 08:20:44 25-Aug-2016 09:20:44

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by