Quick & easy smoothing

バージョン 1.2.0.0 (7.51 KB) 作成者: Damien Garcia
Z = SMOOTH1Q(Y) smoothes data Y using a DCT- or FFT-based spline smoothing method
ダウンロード: 1.9K
更新 2014/2/27

ライセンスの表示

Z = SMOOTH1Q(Y,S) smoothes the data Y using a DCT- or FFT-based spline smoothing method. Non finite data (NaN or Inf) are treated as missing values.

S is the smoothing parameter. It must be a real positive scalar. The larger S is, the smoother the output will be. If S is empty (i.e. S = []), it is automatically determined by minimizing the generalized cross-validation (GCV) score.

Z = SMOOTH1Q(...,'robust') carries out a robust smoothing that minimizes the influence of outlying data.

Z = SMOOTH1Q(...,'periodic') assumes that the data to be smoothed must be periodic.

[Z,S] = SMOOTH1Q(...) also returns the calculated value for the smoothness parameter S so that you can fine-tune the smoothing subsequently if required.

SMOOTH1Q is a simplified and quick version of SMOOTHN for 1-D data. If you want to smooth N-D arrays use SMOOTHN.

References
----------
1) Garcia D, Robust smoothing of gridded data in one and higher dimensions with missing values. Computational Statistics & Data Analysis, 2010.
2) Buckley MJ, Fast computation of a discretized thin-plate smoothing spline for image data. Biometrika, 1994.

引用

Damien Garcia (2024). Quick & easy smoothing (https://www.mathworks.com/matlabcentral/fileexchange/37878-quick-easy-smoothing), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2010b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersSmoothing についてさらに検索
謝辞

ヒントを得たファイル: smoothn

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.2.0.0

Changes in the "bisquare" subfunction

1.1.0.0

New syntax

1.0.0.0