Find overlapping days across two datetime variables
5 ビュー (過去 30 日間)
古いコメントを表示
Hey there,
I have two datetime variables "Hot_days (520x1)" and "Drought_days (1974x1)" that lists days since 2009 which experienced hot and dry conditions respectively. Now I would like to find the days that experiened BOTH dry and hot conditions. In other words, I would like to find the days that overlap with each other across the two different datetime variables.
Thank you in advance!
0 件のコメント
採用された回答
Dyuman Joshi
2022 年 7 月 27 日
%random data
dt1=datetime(2022,6,1):datetime(2022,7,27); %1st June to Today
dt2=datetime(2022,7,1):datetime(2022,9,1); %1st July to 1st September
intersect(dt1,dt2)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!