Extracting a section of data with conditions

1 次查看(过去 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
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 CenterFile Exchange 中查找有关 Logical 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by