Extracting a section of data with conditions
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Image Analyst
el 21 de Feb. de 2022
"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.
Respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!