필터 지우기
필터 지우기

How to create a only a time vector starting 13:15:00 to 20:59:00 with 1 minute interval? R2016a

조회 수: 7 (최근 30일)
I already have a DATE series and i need to create a time series wiith equally spaced 1 minute interval from 13:15:00 to 20:59:00 and attach it with DATE series. How to Create such time series and then attach them with DATE data.

채택된 답변

Chad Greene
Chad Greene 2018년 12월 11일
This is a datetime for today, starting at 13:15 and going to 20:59, in 1 minute [1/(24*60)] intervals.
t = datetime(2018,12,11,13,15,0):1/(24*60):datetime(2018,12,11,20,59,0)
And to check:
>> t(2)-t(1)
ans =
duration
00:01:00
  댓글 수: 12
NS
NS 2018년 12월 12일
Sir I have attached a sample data whherein my first column is DATETIME which are cleaned for non trading hours, holidays and weekends, outliers and second column is PRICE.
My purpose is to get all MINUTES between 13:15 to 20:59 on all DATES in cleaned sample DATES and interpolate the PRICES . I have tried -
interp1(DATETIME(1),PRICE,DATETIME(end))
But I am not getting desired result . Kindly help . I have attached sample data in excel.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

제품


릴리스

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by