Extracting a section of data with conditions
2 次查看(过去 30 天)
显示 更早的评论
I have two sets of data that correspond to one another: altitude and time. I have the time in datetime format and converted it to minutes (double). I need to extract the data from both between a specific time interval (start_t and end_t).
I think where I am running into trouble is my altitude is in a 837x1 table format.
1 个评论
Image Analyst
2022-2-21
"I have two sets of data" <== yes but we don't because you forgot to attach them.
What if you just do
rowsToExtract = t.altitude > start_t & t.altitude < end_t;
altitude = t.altitude(rowsToExtract);
If that doesn't work, then blame it on me not having any data to work with.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!