Difference between two time values in minutes
显示 更早的评论
I have two time point and was trying to calculate their difference to be converted to minutes.
t1 = 08/24/2010 13:21:47.030
t2 = 08/24/2010 14:13:09.118
I tried caldiff, duration, datetime and didn't work. Can you help?
dt = between(t1,t2,"minutes")
1 个评论
Do NOT use deprecated DATENUM or DATEVEC or DATESTR.
t1 = '08/24/2010 13:21:47.030';
t2 = '08/24/2010 14:13:09.118';
dt = datetime([t1;t2],'InputFormat','M/d/u H:m:s.SSS')
d = dt(2)-dt(1)
m = minutes(d)
回答(1 个)
t1 = {'08/24/2010 13:21:47.030'};
t2 = {'08/24/2010 14:13:09.118'};
dt= diff(datenum([t1;t2]))*24*60
% to get the second
second=diff(datenum([t1;t2]))*24*60*60
类别
在 帮助中心 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!