Round date and hour to the previous 15 minute interval

조회 수: 39 (최근 30일)
Jose Valles
Jose Valles 2018년 3월 8일
댓글: Jim McIntyre 2020년 4월 28일
Hello
I would like to round the datetime variable to the previous 15 minutes interval. The tricky part is that it has to be based on the current time. For instance:
t1 = datetime('now','Format','yyyy-MM-dd HH:mm')
the result of the previous code is
2018-03-08 10:34
So, I would like to obtain ...
2018-03-08 10:30
I have tried to used the dateshift function however, I haven't had a good solution

채택된 답변

Rik
Rik 2018년 3월 8일
편집: Rik 2018년 3월 8일
Dateshift would be a good solution, but it can only shift to quarter years, not quarter hours. The code below is a way around this.
t1 = datetime('now','Format','yyyy-MM-dd HH:mm')
t1.Minute = 15 * floor(t1.Minute/15)
%original code:
% t1 = datetime('now','Format','yyyy-MM-dd HH:mm');
% %syntax: t = datetime(Y,M,D,H,MI,S);
% t1=datetime(year(t1),month(t1),day(t1),hour(t1),15*floor(minute(t1)/15),0);
  댓글 수: 4
Rik
Rik 2018년 3월 8일
Good point, I'll edit my answer.
Jim McIntyre
Jim McIntyre 2020년 4월 28일
This answer works for the example given, but is incomplete for real times that might also have non-zero values for seconds. The answer rounds the minutes, but leaves the seconds unrounded.
To fully round to minutes, you need to add:
t1.Second = 0

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

추가 답변 (2개)

Steven Lord
Steven Lord 2018년 3월 8일
Let's start off with the current date and time.
N = datetime('now')
Figure out the start of the hour containing N.
H = dateshift(N, 'start', 'hour')
Generate a datetime vector spaced a quarter of an hour apart, starting with H.
Q = hours(0.25)
P = H + Q*(0:4)
If you're using release R2016b or later you can use discretize.
previousQuarterHour = P(discretize(N, P))
If you're using release R2015b or later you can interpolate using interp1.
previousQuarterHour = interp1(P, P, N, 'previous')
If you're using release R2014b or R2015a you'll need to use find to find the last element of P that is less than or equal to N.
previousQuarterHour = P(find(P <= N, 1, 'last'))

Jose Valles
Jose Valles 2018년 3월 8일
편집: Jose Valles 2018년 3월 8일
Thank for your reply!!
One quick question always related to this post: if I want to find the previous 15 minutes, what would be the best way to do it?
For example, for a datetime variable like:
2018-03-08 08:06
2018-03-08 10:34
we want the last 15-minute as shown as
2018-03-08 07:15
2018-03-08 10:15
What would be the efficient way
Thank you so much!
  댓글 수: 3
Jose Valles
Jose Valles 2018년 3월 8일
No. What I want is to round to previous 15 minutes (Not the previous 15 minutes interval). For instance, the datetime is '2018-03-08 08:06' so the result that I am looking for is '2018-03-08 07:15'.
Another example: the datetime is '2018-03-08 10:34' so the result that i am looking is '2018-03-08 10:15'
I just realized that my example from the previous post was innacurated. My apologies for the innacurate example
Rik
Rik 2018년 3월 8일
t1 = datetime('now','Format','yyyy-MM-dd HH:mm')
t1.Minute = 60 * floor((t1.Minute-15)/60)+15
This will round to the previous ##:15

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

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by