Remove arrays from a cell based on certain conditions
조회 수: 2 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Scott MacKenzie
2021년 11월 7일
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
Scott MacKenzie
2021년 11월 7일
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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!