How to extract latitude and longitudes from a table given the timestamp range?
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(2 个)
Cris LaPierre
2024-6-13
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 个评论
Steven Lord
2024-6-13
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Timetables 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!