createIIRFilter abstract method

IIRFilterNode createIIRFilter(
  1. List<double> feedforward,
  2. List<double> feedback
)

The createIIRFilter() method of the BaseAudioContext interface creates an IIRFilterNode, which represents a general infinite impulse response (IIR) filter which can be configured to serve as various types of filter.

Note: The IIRFilterNode.IIRFilterNode constructor is the recommended way to create a IIRFilterNode; see Creating an AudioNode.

Implementation

IIRFilterNode createIIRFilter(
  List<double> feedforward,
  List<double> feedback,
);