Filters the set of input data using the FIR filter specified by Forward Coefficients. Details
![]() |
initialize, when TRUE, initializes the internal state of the VI. |
![]() |
input data is a set of input data. |
![]() |
Forward Coefficients is the IIR filter specification. |
![]() |
output data is the filtered output data. |
![]() |
error returns any error or warning condition from the VI. Refer to Point By Point Error Codes for more information about these conditions. |
If Y represents the set of output data, the elements of Y are obtained using
y[i] = (1/a[0]) * Sum{b[j]x[i-j]},
where j = 0,1,2, n-1, n is the number of Forward Coefficients, and b is the Forward Coefficients array.