Transfer function filter utilizes the transfer function and the Convolution theorem to produce a filter. In this article, an example of such a filter using finite impulse response is discussed and an application of the filter into real world data is shown.
In digital signal processing, an FIR filter is a time-continuous filter that is invariant with time. This means that the filter does not depend on the specific point of time, but rather depends on the time duration. The specification of this filter uses a transfer function having a frequency response that will only pass the desired frequencies of the input. This type of filter is non-recursive, which means that the output can be completely derived from a combination of the input without any recursive values of the output. This means that there is no feedback loop that feeds the new output the values of previous outputs. This is an advantage over recursive filters such as IIR filter (Infinite Impulse Response) in applications that require a linear phase response because it will pass the input without phase distortion.[1]
Let the output function be
y(t)
x(t)
h(t)
y(t)=
T | |
\int | |
0 |
x(t-\tau)h(\tau)d\tau
\tau
\tau
According to Huang (1981)[3] Using this mathematical model, there are four methods of designing non-recursive linear filters with various concurrent filter designs:
Define the input signal:
y(t)=\sin(t)+rand(\begin{bmatrix}1&200\end{bmatrix})
rand(\begin{bmatrix}1&200\end{bmatrix})
Use an exponential function as the impulse response for the support region of positive values.
h(t)=\begin{cases}0,&\forall&-infty&\le&t&\le0\ e-t, &\forall&0&\le&t&\le+infty\end{cases}
The frequency response of this filter resembles a low-pass filter as in the lower frequency.
Let the input signal to be the same as the single-sided function.Use an exponential function as the impulse response for the support region of positive values as before. In this double-sided filter, also implement another exponential function. The opposite in signs of the powers of the exponent is to maintain the non-infinite results when computing the exponential functions.
h(t)=\begin{cases}et,&\forall&-infty&\le&t&\le0\ e-t,&\forall&0&\le&t&\le+infty\end{cases}
Examine this filter in its frequency domain, we see that the magnitude response is the same trend as the single sided filter. However, the frequencies that can be passed are smaller than those of the single-sided filter. This resulted in a smoother output. The significant of this consequence is that the double-sided filters types of linear filters are better being a filter.
Linear filter performs better when it is a double-sided filter. This requires the data to be known in advance which makes it a challenge for these filters to function well in situations where signals cannot be known ahead of time such as radio signal processing. However, this means that linear filters are extremely useful in filtering pre-loaded data. In addition, because of its non-recursive nature which preserves the phase angles of the input, linear filters are usually used in image processing, video processing, data processing or pattern detection. Some examples are image enhancement, restoration and pre-whitening for spectral analysis.[4] Additionally, linear non-recursive filters are always stable and usually produce a purely real output which makes them more favorable. They are also computationally easy which usually creates a big advantage for using this FIR linear filter.