Member of the filter implementation class.
z = filtic(b, a, y)
z = filtic(b, a, y, x)
Returns the initial conditions for a transposed direct-form II filter.
| Name | Description |
| b | Specifies the forward filter coefficients. b is a vector. |
| a | Specifies the backward filter coefficients. a is a vector. |
| y | Specifies the output signal to filter. y is a real or complex vector. y starts from the most recent output. If y is shorter than length(a) - 1, LabVIEW pads the end of y with zeros. Otherwise, LabVIEW ignores the elements of y beyond y(length(a) - 1). |
| x | Specifies the input signal to filter. x is a real or complex vector. x starts from the most recent input. If x is shorter than length(b) - 1, LabVIEW pads the end of x with zeros. Otherwise, LabVIEW ignores the elements of x beyond x(length(b) - 1). |
| Name | Description |
| z | Returns the state of the delays given the previous inputs in x and the previous outputs in y. |
b = [1, 2, 3, 4, 5];
a = [6, 7, 8];
y = [1, 2];
x = [3, 4, 5, 6];
z = filtic(b, a, y, x)