getFrequencyResponse abstract method

void getFrequencyResponse(
  1. TauFloat32Array frequencyHz,
  2. TauFloat32Array magResponse,
  3. TauFloat32Array phaseResponse
)

The getFrequencyResponse() method of the IIRFilterNode takes the current filtering algorithm's settings and calculates the frequency response for frequencies specified in a specified array of frequencies.

The two output arrays, magResponseOutput and phaseResponseOutput, must be created before calling this method; they must be the same size as the array of input frequency values (frequencyArray).

Implementation

void getFrequencyResponse(
  TauFloat32Array frequencyHz,
  TauFloat32Array magResponse,
  TauFloat32Array phaseResponse,
);