Forward Moving Median¶
Local Algorithm - One-Dimensional Algorithm
Forward Moving Median
algorithm replaces each original data value by the Median value over its neighbor values. The choice of filter width has a great impact on the final results. The basic formula (for filter width L=M+1) is stated as follows:
ˆx[n]=Median{x[n],…,x[n+M]},
where x[n] and ˆx[n] denote raw data and processed data, respectively.
Input Parameters
Parameter | Type | Constraint | Description | Remarks |
---|---|---|---|---|
x[n] | x[n]∈RN | N∈N | Input data sequence of length N | |
L | L∈N | L=M+1,M∈N |
Output Parameters
Parameter | Type | Constraint | Description | Remarks |
---|---|---|---|---|
ˆx[n] | ˆx[n]∈RN | N∈N | Output data sequence of length N |
Tool Support
Single Steps using the Algorithm
References
- G.R. Arce, Nonlinear Signal Processing: A Statistical Approach, Wiley:New Jersey, USA, 2005.