0
mirror of https://github.com/ltian059/Graduation-Project.git synced 2025-02-05 11:28:06 +00:00
itian059-grad-project/Experiment_1005/code/is_summer_time.m
2024-12-04 12:46:40 -05:00

13 lines
296 B
Matlab

function isSummer = is_summer_time(dateStr)
% Parse the input date string
date = datetime(dateStr, 'InputFormat', 'yyyyMMdd');
% Set the time zone for Ottawa
date.TimeZone = 'America/Toronto';
% Check if the date is in daylight saving time
isSummer = isdst(date);
end