delete locally outliers with window size

1 次查看(过去 30 天)
Hi, I have the indx vector and I need to remote locally outliers to delete the one I have into the circle, does someone know how?

回答(1 个)

Bruno Luong
Bruno Luong 2020-8-31
编辑:Bruno Luong 2020-8-31
load('indx.mat');
% Change windows size and threshold eventually
midx = medfilt1(indx,3); % This requires signal processing tbx
indx(abs(midx-indx)>10) = NaN; % replace outlier with NaN
plot(indx)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by