How can I retime my timetable with a 10days timestep?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi guys,
I need to retime my hourly timetable to an average 10days time step. Then apply an index to them.
I know that predefine timesteps like hourly or monthly exist in m,atlab but 10day time interval??
Thanks in advance
댓글 수: 0
채택된 답변
dpb
2020년 5월 1일
Read the documentation...
TT2 = retime(TT1,'regular',method,'TimeStep',dt) calculates regularly spaced row times using the time step dt. The dt input argument is a scalar duration or calendar duration, specifying a time step of any size. The row times of TT2 span the range of row times of TT1.
Use this syntax when the time step is not one of the predefined time steps you can specify as a character vector or string.
댓글 수: 5
dpb
2020년 5월 5일
Hmmmm, Peter. I can't find what I had tried in command history now to see what I did wrong to draw the conclusion couldn't get there from here...somehow I had convinced myself something wasn't right but can't reproduce what that was at the moment.
Thanks for straightening out...
추가 답변 (1개)
Steven Lord
2020년 5월 1일
Pass a datetime vector as the newTimes input to retime as shown in the Interpolate Timetable Data to Time Vector example on the documentation page.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!