Extracting a section of data with conditions
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commento
Image Analyst
il 21 Feb 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.
Risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!