Datetime differences but ignoring years
10 次查看(过去 30 天)
显示 更早的评论
I have a bunch of datetimes and I want to know the times between them, but I don't want to consider the year. So, say the dates are:
2019-11-29 09:00:00
2020-11-20 10:10:00
2021-11-22 08:30:00
The order I want to sort these into when ignoring the year would be:
11-20 10:00:00
11-22 08:30:00
11-29 09:00:00
Then I want the time between these in minutes, so [2790,10110] if I did my math right. What's the easiest way to do this?
0 个评论
采纳的回答
Cris LaPierre
2023-4-4
You can't just drop the year from a datetime variable. It's there, even if your viewing format does not display it. To me, that suggests either making the year the same in all of your datetimes, or sort by month of year, then day of month, then hour, etc.
I think changing the year is easiest, especially since your minutes are calculated ignoring year as well. You can use the functions diff and minutes to find the time between each datetime.
T = datetime([2019 11 29 09 00 00; 2020 11 20 10 10 00; 2121 11 22 08 30 00])
Ttemp = T;
Ttemp.Format = 'MM-dd HH:mm:ss';
Ttemp.Year = 2020
Tnew = sort(Ttemp)
dmin = minutes(diff(Tnew))
2 个评论
Peter Perkins
2023-4-5
Yes. The problem is that your question is ill-posed. In general you can't ignore the year. Especially if there are DST timezones involved. But if the timestamps don't straddle a leap day, and you don't care about DST shifts, Cris has the right way to go.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calendar 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!