How to extract latitude and longitudes from a table given the timestamp range?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (2)
Cris LaPierre
il 13 Giu 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 Commenti
Steven Lord
il 13 Giu 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 Commenti
Vedere anche
Categorie
Scopri di più su Timetables in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!