creating time vector ?

11 views (last 30 days)
pruth
pruth on 21 May 2018
Commented: pruth on 21 May 2018
silly question.
how to create time series vector for a period of one specific date(say 2 February 2010) to some specific date(11 November 2010) with an interval of one second, one minute, 1 hour,3 hours etc?

Accepted Answer

Stephen23
Stephen23 on 21 May 2018
Edited: Stephen23 on 21 May 2018
t1 = datetime(2010,02,02);
t2 = datetime(2010,11,11);
t1:seconds(1):t2
t1:minutes(1):t2
t1:hours(1):t2
t1:hours(3):t2
  1 Comment
pruth
pruth on 21 May 2018
Aaahaaa !!! fantastic. thanks. life is so easy.

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!