how to convert data in UTC to a specific local time

137 views (last 30 days)
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.

Accepted Answer

Peter Perkins
Peter Perkins on 25 Aug 2016
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

More Answers (0)

Categories

Find more on Dates and Time in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!