How to Interpolated data outliers
    8 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Matheus Brito
 le 2 Mar 2020
  
    
    
    
    
    Commenté : Matheus Brito
 le 9 Mar 2020
            I have a data column that has 3630 rows of data. I used the method: [A, B] = rmoutliers (C, 'movmedian', window); to remove the data outliers. 
These data were removed and I need them to be interpolated by the average of the entire column of data. How can I do this?
0 commentaires
Réponse acceptée
  Turlough Hughes
      
 le 2 Mar 2020
        
      Modifié(e) : Turlough Hughes
      
 le 2 Mar 2020
  
      Generate some sample data:
C = (1:3630).';
idxout = randperm(3630,500); % random index for outliers
C(idxout) = C(idxout)+2000*(1-2*rand(numel(idxout),1));
Using rmoutliers some of the values are removed:
window = 50;
[A, B] = rmoutliers(C, 'movmedian', window);
Seeing as you've indicated that you only have a column vector of data I assume you want to interpolate using index position as your input for x, you could try the following:
idx = find(~B); % C(idx) is the same as A
D = interp1(idx,A,1:size(C,1)); % Interpolated using index position as x values.
Let me know. 
1 commentaire
  Turlough Hughes
      
 le 3 Mar 2020
				Did this work for you? If not I suggest uploadibg the variable C as a .mat
Plus de réponses (1)
Voir également
Catégories
				En savoir plus sur Interpolation dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!