Implements an analog filter with transfer response specified by numerator and denominator polynomials.
Analog filters are generally specified by a rational polynomial. Use this filter when you know the coefficients of the defining polynomial.
menu: veeos ==> Signal Processing ==> Modules ==> polyFilter
library: sigLib
see example in veeos menu
In general a linear (analog) filter may be defined by the rational polynomial
H(S) where Output(S)=Input(S)*H(S). A typical H(S) rational polynomial may be
expressed as:
( n[0]*S^0 + n[1]*S^1 +...n[i]*S^i ) / ( p[0]*S^0 + p[1]*S^1 +...p[i]*S^i
)
where n and p are the coefficient vectors that define these polynomials. This function inputs those two vectors, determines H(jF), and filters the input signal appropriately.
VEE 7.0+, all platforms
aFilter, AnalogFilter, funcFilter, rootFilter