MATLAB: Access data within timerange

endtimeMATLABstarttimetimerangetimetable

Hey guys,
I use timerange for accessing data in huge timetables (measurements) which works perfectly. I store these timeranges in cells.
However, in some cases it would be useful to get the starttime or endtime of a certain timerange, so another function can handle it (e. g. as a datetime). Or just to calculate the duration of the timerange.
I did not find anything like this, so I hope someone can help me! Thanks!

Best Answer

The timerange object is another of those opaque thingies TMW has fallen in love with that has useful stuff inside it that is hidden and not documented. :(
You can get the two interval values and the type of interval as two-step process--
s=timerange(t1,t2);
ss=struct(s); % convert the timerange object to a struct that reveals internals
t1=ss.first; % retrieve the start
t2=ss.last; % end times in timerange s
However, since you have to have set t1,t2 for the timeranage object when you created it; it would be more straightforward to create your own "object" or array of objects that contains the information for the specific tmerange then. At the convenience of not having to carry those around but being able to reconstruct on demand for any specific timerange at hand.