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 Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by