Smoothing of noisy data

조회 수: 25 (최근 30일)
Richard Wood
Richard Wood 2020년 3월 21일
댓글: Image Analyst 2020년 3월 22일
Hello everyone, I want to smooth my data, which looks like
It is possible to see a trend, more or less. Using smooth(data)
Do you have any advice to improve it?

채택된 답변

Image Analyst
Image Analyst 2020년 3월 21일
You forgot to attach your data. But you can try smoothdata(). It looks like it in turn calls movmean(), movmedian(), sgolayfilt(), or whatever smoothing method you want:
Smoothing method, specified as one of the following:
  • 'movmean' — Moving average over each window of A. This method is useful for reducing periodic trends in data.
  • 'movmedian' — Moving median over each window of A. This method is useful for reducing periodic trends in data when outliers are present.
  • 'gaussian' — Gaussian-weighted moving average over each window of A.
  • 'lowess' — Linear regression over each window of A. This method can be computationally expensive, but results in fewer discontinuities.
  • 'loess' — Quadratic regression over each window of A. This method is slightly more computationally expensive than 'lowess'.
  • 'rlowess' — Robust linear regression over each window of A. This method is a more computationally expensive version of the method 'lowess', but it is more robust to outliers.
  • 'rloess' — Robust quadratic regression over each window of A. This method is a more computationally expensive version of the method 'loess', but it is more robust to outliers.
  • 'sgolay' — Savitzky-Golay filter, which smooths according to a quadratic polynomial that is fitted over each window of A. This method can be more effective than other methods when the data varies rapidly.
  댓글 수: 5
Richard Wood
Richard Wood 2020년 3월 22일
The interactive environment was very helpful. Thank you very much to both of you!
Image Analyst
Image Analyst 2020년 3월 22일
Looks like a nice tool. It would be nice if it were somehow available for those of us who prefer the traditional editor instead of the live script editor. Like if it were callable from the command line or on the Apps tab of the tool ribbon.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spectral Estimation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by