Datetime differences but ignoring years
Show older comments
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?
Accepted Answer
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!