smoothdata
ノイズの多いデータの平滑化
構文
説明
は、名前と値の引数を 1 つ以上使用して、平滑化に関する追加のパラメーターを指定します。たとえば、B = smoothdata(___,Name,Value)t が時間値のベクトルである場合、smoothdata(A,"SamplePoints",t) は t の時間を基準にして A のデータを平滑化します。
例
入力引数
名前と値の引数
出力引数
詳細
アルゴリズム
平滑化法のウィンドウ サイズが指定されていない場合、smoothdata は経験則に基づいて既定のウィンドウ サイズを計算します。平滑化係数 τ について、経験則により入力データのエネルギーの約 100*τ パーセントを減衰する移動平均ウィンドウ サイズを推定します。
拡張機能
バージョン履歴
R2017a で導入参考
関数
smoothdata2|fillmissing|fillmissing2|movmean|movmedian|movmad|filter










![Given elements 1 to 7, if the current sample point is 4, then the corresponding window spans the range [2, 6].](movwindow_vector.png)
![Given elements 1 to 7, if the current sample point is 2, then the corresponding window spans the range [1, 4].](movwindow_edgetruncate.png)
![Given elements 1 to 7, if the current sample point is 2, then the corresponding window spans the range [1, 5].](movwindow_edgeslide.png)