iir

Function iir 

Source
pub fn iir<T: HasAfEnum>(b: &Array<T>, a: &Array<T>, x: &Array<T>) -> Array<T>
Expand description

Infinite impulse response filter

§Parameters

  • b is the Array containing the feedforward coefficients
  • a is the Array containing the feedback coefficients
  • x is the input signal to filter

§Return Values

Filtered Array