Access data within timerange

15 Ansichten (letzte 30 Tage)
Thomas Horst
Thomas Horst am 11 Jul. 2020
Kommentiert: Thomas Horst am 12 Jul. 2020
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!

Akzeptierte Antwort

dpb
dpb am 11 Jul. 2020
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.
  1 Kommentar
Thomas Horst
Thomas Horst am 12 Jul. 2020
Thank you so much, this is exactly what I needed!
You were right, of course, in your closing remarks. Next time I'll do it like that. Unfortunately, I already have hundreds of timeranges in my project and no more sources.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating, Deleting, and Querying Graphics Objects finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by