-3

I have the following data, which corresponds to a "noisy" exponential shaped signal. Graph Is there any easy/intuitive way of eliminating the noise/ripple of it to get a clean signal (like filtering)?

Any help is appreciated!

euskadi
  • 127
  • 1
  • 14

1 Answers1

1
Use median or averaging filters. For example this is from MATLAB's examples:
https://www.mathworks.com/help/signal/ref/medfilt1.html 

% Create the signal 
fs = 100;
t = 0:1/fs:1;
x = sin(2*pi*t*3)+0.25*sin(2*pi*t*40);

% Filter 
y = medfilt1(x,10);

%Plot the result 
plot(t,x,t,y);
legend('Original','Filtered');
legend('boxoff');


enter image description here

cemsazara
  • 1,623
  • 15
  • 14