How to apply filter to smooth data?
조회 수: 2 (최근 30일)
이전 댓글 표시
size(A)=[512 1].
What is the function to smooth 'A' with either moving average or least square method?
댓글 수: 0
채택된 답변
Image Analyst
2013년 4월 18일
One way:
windowSize = 7; % Bigger number = more smoothing.
smoothedSignal = conv(noisySignal, ones(windowSize, 1)/windowSize, 'same');
댓글 수: 0
추가 답변 (1개)
Sean de Wolski
2013년 4월 17일
doc smooth
If you have the Curve Fitting Toolbox.
댓글 수: 2
Sean de Wolski
2013년 4월 18일
A few options would be to use filter() or conv() or a for-loop.
Or you could purchase the CFT :)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!