mirror of
https://github.com/ltian059/Graduation-Project.git
synced 2025-02-05 11:28:06 +00:00
13 lines
296 B
Matlab
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
|
|
|
|
|