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!