delete locally outliers with window size
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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?
0 comentarios
Respuestas (1)
Bruno Luong
el 31 de Ag. de 2020
Editada: Bruno Luong
el 31 de Ag. de 2020
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)
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!