How to extract latitude and longitudes from a table given the timestamp range?
2 views (last 30 days)
Show older comments
Hello, I'm currently using a time table and want to have the user give a start time and end time then store them in variables. Once given, I want to use the timetiable to access a list of latitude and longitude values given in between those times and plot it. I'm still new to MATLAB and unsure how to approach this is ui.app designer.
0 Comments
Answers (2)
Cris LaPierre
on 13 Jun 2024
I would use isbetween to create an index of the table rows that are between the lower and upper times.
I would then use that index to extract the specific variable values I wanted from the table. See Accessing Data in Tables for this.
0 Comments
Steven Lord
on 13 Jun 2024
Time = datetime({'12/18/2015 08:00:00';'12/18/2015 10:00:0';'12/18/2015 12:00:00';...
'12/18/2015 14:00:00';'12/18/2015 16:00:00';'12/18/2015 18:00:00'});
Temp = [37.3;39.1;42.3;45.7;41.2;39.9];
TT = timetable(Time, Temp)
R = timerange('12/18/2015 09:00 AM', '12/18/2015 05:00 PM')
TT(R, :)
0 Comments
See Also
Categories
Find more on Timetables 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!