Mean of values before and after a specific element

조회 수: 12 (최근 30일)
ennes mulla
ennes mulla 2021년 6월 29일
답변: Mathieu NOE 2021년 6월 29일
Hi
I have an array of 1 row and 400 colmun, where all elments values are above 1500. However, I have some elements that have values <50 which are wrong measures and I would like to have the mean of the elments before and after the wrong measured data points and replace it in the main array
For intance, element number 17 is below 50 so I want to take the mean of elment 16 and 18 and replace element 17 with the new mean.
Can someone help me please.

채택된 답변

Mohammad Sami
Mohammad Sami 2021년 6월 29일
편집: Mohammad Sami 2021년 6월 29일
If you have Matlab version greater then R2017a, you can use filloutliers or you can replace the invalid values with NaN an then use fillmissing. You can use "linear" method to replace the ouliers / missing values, which will essentially take the mean of neighbouring values to fill in the outlier / missing value.
% generate test data
a = randi([1000 2000],1,400);
a(randperm(400,10)) = randi([1 50],1,10);
scatter(1:400,a)
i = a<= 50;
b = filloutliers(a,'linear','mean');
scatter(1:400,b,[],i,'filled');
colormap jet;
c = a;
c(i) = NaN;
c = fillmissing(c,'linear');
scatter(1:400,c,[],i,'filled');
colormap jet;
  댓글 수: 1
ennes mulla
ennes mulla 2021년 6월 29일
It worked!!! thanks a lot buddy! I truly appreciate your help

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Mathieu NOE
Mathieu NOE 2021년 6월 29일
hello see code below :
clc
clearvars
% dummy data
x = 1:1:400;
y = 1500 + 50*rand(1,400);
y(40)=35; % first outlier (single value)
y(60:66)=45; % second outliers (multiple values)
yi = y; % keep trace of initial y data (for plot)
all_idx = 1:length(x);
% outlier_idx = abs(y - median(y)) > 2*std(y); % Find outlier idx
outlier_idx = y<50; % Find outlier idx
y(outlier_idx) = []; % remove outlier from dataset
y = interp1(all_idx(~outlier_idx), y, x); % replace outliers by interpolated data
figure(1),plot(x,yi,x,y);

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by