RADLib
RADical C++ application framework
RADDsp::BiquadCoefficients Struct Reference

Normalized direct-form biquad coefficients with a0 folded into all terms. More...

#include <RADDsp.h>

Public Attributes

float b0 = 1.0f
 Feed-forward coefficient for x[n]. More...
 
float b1 = 0.0f
 Feed-forward coefficient for x[n-1]. More...
 
float b2 = 0.0f
 Feed-forward coefficient for x[n-2]. More...
 
float a1 = 0.0f
 Feedback coefficient for y[n-1], assuming y = b*x - a*y. More...
 
float a2 = 0.0f
 Feedback coefficient for y[n-2], assuming y = b*x - a*y. More...
 

Detailed Description

Normalized direct-form biquad coefficients with a0 folded into all terms.

Member Data Documentation

◆ a1

float RADDsp::BiquadCoefficients::a1 = 0.0f

Feedback coefficient for y[n-1], assuming y = b*x - a*y.

◆ a2

float RADDsp::BiquadCoefficients::a2 = 0.0f

Feedback coefficient for y[n-2], assuming y = b*x - a*y.

◆ b0

float RADDsp::BiquadCoefficients::b0 = 1.0f

Feed-forward coefficient for x[n].

◆ b1

float RADDsp::BiquadCoefficients::b1 = 0.0f

Feed-forward coefficient for x[n-1].

◆ b2

float RADDsp::BiquadCoefficients::b2 = 0.0f

Feed-forward coefficient for x[n-2].


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