Azzera filtri
Azzera filtri

How to apply filter to smooth data?

2 visualizzazioni (ultimi 30 giorni)
Yun Inn
Yun Inn il 17 Apr 2013
size(A)=[512 1].
What is the function to smooth 'A' with either moving average or least square method?

Risposta accettata

Image Analyst
Image Analyst il 18 Apr 2013
One way:
windowSize = 7; % Bigger number = more smoothing.
smoothedSignal = conv(noisySignal, ones(windowSize, 1)/windowSize, 'same');

Più risposte (1)

Sean de Wolski
Sean de Wolski il 17 Apr 2013
doc smooth
If you have the Curve Fitting Toolbox.
  2 Commenti
Yun Inn
Yun Inn il 17 Apr 2013
I don't have Curve Fitting Toolbox. Alternative?
Sean de Wolski
Sean de Wolski il 18 Apr 2013
A few options would be to use filter() or conv() or a for-loop.
Or you could purchase the CFT :)

Accedi per commentare.

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by