![]() |
| サイトマップ | |
|
関数 lowpass は、x 変数と y 変数の範囲を元にスムーズ化した y 値を返します。オプションのユーザー定義スムージング係数を使用して FFT と IFFT を利用できます。
lowpass
(x range, y range, f)
引数 x range は、x 変数を指定し、引数 y range は y 変数を指定します。範囲内に含まれている欠損値または文字列は無視され、データポイントとして扱われません。引数 x range と y range のサイズは同じである必要があり、3つ以上の有効なデータポイントが必要になります。
オプションの引数 f は、FFT と IFFT の使用を定義します。f は 0 以上 100 以下でなければなりません。f を省略すると、フーリエ変換を使用しません。
※ Note: lowpass は特に非線形回帰の一部として波形関数のスムーズ化を実行するために設計されています。 |
x = {0,1,2}, y={0,1,4}
の場合:
col(1)=lowpass(x,y,88)この演算は、新たにスムーズ化されたデータ 0.25, 1.50, 2.25 を列1に代入します。
The lowpass function returns smoothed y values from ranges of x and y variables, using an optional user-defined smoothing factor that uses FFT and IFFT.
lowpass(x range, y range, f)
The x range argument specifies the x variable, and the y range argument specifies the y variable. Any missing value or text string contained within one of the ranges is ignored and will not be treated as a data point. x range and y range must be the same size, and the number of valid data points must be greater than or equal to 3.
The optional f argument defines whether FFT and IFFT are used. f must be greater than or equal to 0 and less than or equal to 100 . If f is omitted, no Fourier transformation is used.
Note: lowpass is especially designed to perform smoothing on waveform functions as a part of nonlinear regression.
col(1)=lowpass(x,y,88)places the newly smoothed data 0.25, 1.50, 2.25 into column 1.