vote up 5 vote down star

I have some 9000 points that are plotted on a graph:

[Full resolution]

alt text

Actually, the plot is not as smooth as I wanted it to be. Is there some way I can smoothen the graph to a required degree?

Or some form of thresholding so that I can selectively smoothen out the parts that is too bumpy?

I am not sure but can fast-fourier-transform help?

flag

4 Answers

vote up 5 vote down check

A simple (ad hoc) way is to just take a weighted average (tunable by alpha) at each point with its neighbors:

data(2:n-1) = alpha*data(2:n-1) + (1-alpha)*0.5*(data(1:n-2)+data(3:n))

or some variation thereof. Yes, to be more sophisticated you can Fourier transform your data first, then cut off the high frequencies. Something like:

f = fft(data)
f(n/2+1-20:n/2+20) = zeros(40,1)
smoothed = real(ifft(f))

This cuts out the highest 20 frequencies. Be careful to cut them out symmetrically otherwise the inverse transform is no longer real. You need to carefully choose the cutoff frequency for the right level of smoothing. This is a very simple kind of filtering (box filtering in frequency domain), so you can try gently attenuating high order frequencies if the distortion is unacceptable.

link|flag
shouldn't c=ifft(fft(a)) always give c=a? it is true for some cases but not for a=[2 3 4 5 6 1 2 4 7 3 3 21 1 4 5 77 3 2 256 3 312 1 5 76 4 3 3 2 6 7 3 3 56 5 645 4 4 4 4] I am getting some imaginary numbers in c. Any guesses why? – eSKay Oct 4 at 9:23
1  
@eSKay: It is exactly true for me. However due to rounding, c may acquire a small imaginary component. I fixed the code above to put real on the outside of ifft, as it should have been. – Victor Liu Oct 4 at 9:28
@Victor Liu okay. what is 'n' in your calculation of smooth? – eSKay Oct 4 at 9:31
@eSKay: n is the length of the data. – Victor Liu Oct 4 at 9:40
@Victor Liu thanks. – eSKay Oct 4 at 10:02
vote up 0 vote down

FFT isn't a bad idea, but it's probably overkill here. Running or moving averages give generally poor results and should be avoided for anything besides late homework (and white noise).

I'd use Savitzky-Golay filtering (in Matlab sgolayfilt(...)). This will give you the best results for what you are looking for - some local smoothing while maintaining the shape of the curve.

-Paul

link|flag
vote up 6 vote down

If you have the curve fitting toolbox, you can use the smooth function. The default method is a moving average of size 5 (method can be changed). An example:

% some noisy signal
Fs = 200; f = 5;
t = 0:1/Fs:1-1/Fs;
y = sin(2*pi*f*t) + 0.6*randn(size(t));
subplot(411), plot(y);
subplot(412), plot( smooth(y, 5, 'moving') );  % average window

If not, you can use use your own window function using filter:

wndwSize = 5;
h = ones(1,wndwSize)/wndwSize;      % equiv to a moving average window
subplot(413), plot( filter(h, 1, y) );

h = pdf('Normal',-floor(wndwSize/2):floor(wndwSize/2),0,1);   % gaussian
subplot(414), plot( filter(h, 1, y) )

screenshot

link|flag
@Amro thanks, using smooth() is easy and simple! – eSKay Oct 4 at 15:54
vote up 1 vote down

I'd first try to display the running average over a number of points, like 5 or 10. This way, a single discrepancy in the values only have a little impact on the graph. Of course, it depends on how accurate you need the graph to be.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.