Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
{}
Wiki Markup
scrollbar

Information

Transformation:

LowPass

Transformation Group:

Filter

Description:

Low pass filter for discrete time series. This transformation calculates the following difference equation.

No Format
 y(t) = b0*x(t) + b1*x(t-1) + ... + bM*x(t-M) + a1*y(t-1) + ... + aN*y(t-N) 

Here x is the input, y is the output, t denotes time, b0 to bM are the feedforward coefficients and a1 to aN are the feedback coefficients. When this transformation runs, then it first retrieves the required previous output values from previous runs, if available.

...