How can I calculate the number of days between two dates?
8 次查看(过去 30 天)
显示 更早的评论
Two matrices are given as [dd mm yyyy] format. I want to calculate the number of days between the two days.
A=[1 1 2017];
B=[1 1 2018];
d1=datetime(A(3),A(2),A(1));
d2=datetime(B(3),B(2),B(1));
numdays=daysact(d1,d2);
disp(numdays)
This returns 8760, instead of 365. What should I do?
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!