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')
dt = 2×1 datetime array
24-Aug-2010 13:21:47 24-Aug-2010 14:13:09
d = dt(2)-dt(1)
d = duration
00:51:22
m = minutes(d)
m = 51.3681

댓글을 달려면 로그인하십시오.

답변 (1개)

Arif Hoq
Arif Hoq 2022년 2월 11일
편집: Arif Hoq 2022년 2월 11일
t1 = {'08/24/2010 13:21:47.030'};
t2 = {'08/24/2010 14:13:09.118'};
dt= diff(datenum([t1;t2]))*24*60
dt = 51.3681
% to get the second
second=diff(datenum([t1;t2]))*24*60*60
second = 3.0821e+03

카테고리

도움말 센터File Exchange에서 Dates and Time에 대해 자세히 알아보기

질문:

2022년 2월 11일

댓글:

2022년 2월 11일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by