Remove arrays from a cell based on certain conditions
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi all,
I have a large set of windspeed data where i have grouped data into seperate arrays within a cell based on a lower limit of 20m/s and an upper limit of 30m/s. However, some of the arrays contain data within these limits in a deccedning order (first value in array is 30 and final is 20), which i do not care about. I only care about the arrays where the initial value is 20 and the final value is 30. The raw data is very large and quiet random so each array within the cell is of a different length.
Is there any way i can delete arrays whose first value is greater than the final value?
0 Commenti
Risposte (1)
Scott MacKenzie
il 7 Nov 2021
If x is an array of numeric data, then
if x(1) > x(end)
clear x;
end
will delete the array x if the "first value is greater than the final value", as your question asks.
2 Commenti
Scott MacKenzie
il 7 Nov 2021
I didn't expect my answer to be a solution to the larger issue you are working on. It was intended only an answer to the question as posed.
I suggest you post your data and any code you've written thus far that demonstrates the particular problem you are working on. If the data file is overly large, just post a subset of the data.
Vedere anche
Categorie
Scopri di più su Multidimensional Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!