using datetime() in retrieving data
Show older comments
Assuming I am using datetime() to refer to the date and time that some data has accured in.
date=datetime(1999,06,19,15,45,00); %datetime(year,month,day,hour,min,sec)
I am using 'date' in further comparison to retrive some data, now is there any syntax I may use in this that would allow me for example to retrive the data happened in a certain day for all the years, (ex: the data happened in 1st october from all the years we have) or for a certain hour from all days in months in years?
2 Comments
Steven Lord
on 30 Sep 2021
How is your data stored? If it's in a timetable array you may find a timerange useful. The isbetween function may also be helpful.
Alternately checking using some of the functions in the "Split Dates and Times" section on the Dates and Times page in the documentation may be of use as @Siddharth Bhutiya showed.
MA
on 2 Oct 2021
Accepted Answer
More Answers (1)
KSSV
on 30 Sep 2021
Read about datevec. This will split your date into year, month, day, hour, minute and secobd. From here you can use logial indexing and get the indices.
idx = month == 10 & day == 1 ;
1 Comment
Stephen23
on 30 Sep 2021
Do NOT convert DATETIME objects to the older, less accurate, less versatile, DATEVEC, DATENUM, etc.
Instead use MONTH, DAY, etc directly on the DATETIME object, and then you can use the usual logical comparisons required for your data operations.
Categories
Find more on Dates and Time 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!