Al momento, stai seguendo questo contributo
- Vedrai gli aggiornamenti nel tuo feed del contenuto seguito
- Potresti ricevere delle email a seconda delle tue preferenze per le comunicazioni
DESPIKING DISCRETE-TIME SIGNAL USING HISTOGRAM METHOD
Time series may contain undesired transients and spikes. This function replace spikes (outliers) exceeding the threshold value by interpolating among previous and subsequent data points or replacement them with NaN per user choice. The threshold is defined as mean +/- a number of standard deviations of windowed data centered at spike locations. This code uses the histogram method of Solomon et al. (2001) to detect spikes.
Examples are given in the comment section. The debug option when it is "True" compares results of this function with MatLAB's 1-D median filtering (medianfilt1) function.
For questions, comments and suggestions: kalkan76@gmail.com
Reference:
Solomon, O. M., D. R. Larson, and N. G. Paulter (2001). Comparison of some algorithms to estimate the low and high state level of pulses, IEEE Instrumentation and Measurement Technology Conference, Vol. 1, Budapest, Hungary, 21–23 May 2001, 96–101.
Cita come
Dr. Erol Kalkan, P.E. (2026). spikeRemoval (https://it.mathworks.com/matlabcentral/fileexchange/69614-spikeremoval), MATLAB Central File Exchange. Recuperato .
Informazioni generali
- Versione 2.1.0 (7,03 KB)
Compatibilità della release di MATLAB
- Compatibile con qualsiasi release
Compatibilità della piattaforma
- Windows
- macOS
- Linux
| Versione | Pubblicato | Note della release | Action |
|---|---|---|---|
| 2.1.0 | Updated references |
||
| 2.0.9 | Replaced diff with nth order central difference function.
|
||
| 2.0.8 | Updated notes |
||
| 2.0.7 | Updated notes |
||
| 2.0.6 | Added return -1 if no spike found |
||
| 2.0.5 | Added output array for indices of spikes, their values and replacements (thanks to Dr. Ayal Anis)
|
||
| 2.0.4 | Comments are updated |
||
| 2.0.3 | Excluded spike in spike search window for mean and standard deviation computation; bug fix for spike search in the beginning and end regions of the input array. |
||
| 2.0.2 | Modified comments |
||
| 2.0.1 | Reference added, description updated |
||
| 2.0.0 | Code re-organized to eliminate the wrapper.
|
||
| 1.0.0 |
