Finding Max and Min while ignoring a specific range
이전 댓글 표시
Hi All,
I am trying to find the max/min of a single column of data. Normally I would use the max(X) and min(X), but this particular dataset has spikes I'd like to ignore. The values tend to be roughly -.010 < X < .010, but there are some instantaneous spikes within the data around +/-100. Is there a way to get the max and min while ignoring these spikes?
For example:
If X < 1 AND X > -1 Then max(X) AND min(X) Else Ignore
Hope this makes sense. Thanks in advance for your help! -Marcus
답변 (1개)
max( X( X < 0.01 ) )
min( X( X > -0.01 ) )
should work?
댓글 수: 3
Marcus Solis
2017년 6월 13일
Marcus Solis
2017년 6월 13일
Adam
2017년 6월 14일
You could try running a non-aggressive smoothing filter to try to get ride of the outliers, but that will diminish your magnitudes elsewhere too. You can't really do much without getting rid of the erroneous data though.
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
