Wayverb
wayverb::core::filter::biquad Class Referencefinal

#include <filters_common.h>

Classes

struct  coefficients
 

Public Member Functions

constexpr biquad (const coefficients &coefficients)
 
constexpr double filter (double i)
 Run the filter for one step.
 
constexpr void clear ()
 Resets delay lines, does not affect filter coefficients.
 

Detailed Description

IIR filter concept:

  • implements a method 'filter' which takes a single double, filters it, and returns a single filtered double.
  • implements a method 'clear' which zeros any state that might affect future output from 'filter' but which does not change the characteristics of the filter. A super-simple biquad filter. Adheres to the IIR filter concept.

The documentation for this class was generated from the following file: