Detect and remove outliers in signals
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi there,
I have a signal, which is attached, and I want to remove outliers, which are shown in the figure, in datasets, or just replaced them with 0.
I try to use the rmoutliers function but it reduces the length of datasets while I want to get the same length of original datasets as a result.
Any suggestion would be appreciated.

0 Commenti
Risposte (2)
Bjorn Gustavsson
il 5 Ago 2022
Be very cautious when changing bad-data-values to some default-value - that will eventually lead to (since we all know that the exact procedure one takes to do this will be forgotten far too soon) bad errors in some statistical measures of that data-set. If you really want the same-side of the out-lier-removed data I suggest you plug in nan instead of zeros. If you use rmoutliers you could do this:
[~,idx_outliers] = rmoutliers(Data);
Data(idx_outliers) = nan;
Then you can still do the statistics on the signal - this way you will have to correctly handle the nan-s in the data, which isn't too tricky.
HTH
3 Commenti
Steven Lord
il 5 Ago 2022
You could try filling the outliers with NaN values (or some other method) using the filloutliers function.
x = [1 2 99 4 5]
filloutliers(x, NaN)
filloutliers(x, 'linear')
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!