Company Events Academic NI Developer Zone Support Solutions Products & Services Contact NI MyNI

filtic (MathScript Function) (Windows, Not in Base Package)

LabVIEW 8.5 Help
August 2007

NI Part Number:
371361D-01

»View Product Info

Member of the filter implementation class.

Syntax

z = filtic(b, a, y)

z = filtic(b, a, y, x)

Description

Returns the initial conditions for a transposed direct-form II filter.

Examples

Inputs

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).

Outputs

Name Description
z Returns the state of the delays given the previous inputs in x and the previous outputs in y.

Examples

b = [1, 2, 3, 4, 5];
a = [6, 7, 8];
y = [1, 2];
x = [3, 4, 5, 6];
z = filtic(b, a, y, x)

Related Topics

filter
filter2


Resources


 

Your Feedback! poor Poor  |  Excellent excellent   Yes No
 Document Quality? 
 Answered Your Question? 
Add Comments 1 2 3 4 5 submit