quantfilt1

버전 1.2.0.0 (2.92 KB) 작성자: Matt Stead
quantfilt1() is a span-order quantile filter for one-dimensional arrays
다운로드 수: 6
업데이트 날짜: 2019/10/25

라이선스 보기

qx = quantfilt1(x, quantile, span, [tail_option])

quantfilt1() is a span-order quantile filter for one-dimensional arrays
quantile is the proportion of the window data whose value is returned at the center of each window
span is the filter order (window size)

quantile range: [0 to 1] Examples: 0.0 == local minimum filter
0.5 == local median filter
1.0 == local maximum filter

For odd span, qx(i) is the quantile value of x((i - ((span - 1) / 2)) : (i + ((span - 1) / 2)))
For even span, qx(i) is the quantile value of x((i - ((span - 2) / 2)) : (i + (span / 2)))

Tail half-windows are treated with the following options:
'truncate': fill with the quantile values of progressively shrinking windows (default)
'extrapolate': fill with the quantile values of closest full window
'zeropad': fill with zeros

인용 양식

Matt Stead (2025). quantfilt1 (https://kr.mathworks.com/matlabcentral/fileexchange/73059-quantfilt1), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2019b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Sparse Matrices에 대해 자세히 알아보기
태그 태그 추가

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.2.0.0

minor changes in code, output unchanged

1.1.0.0

minor bug fixed

1.0.0