Skip to content

class biquad_section<T> biquad

template <typename T>
struct biquad_section { … }

Structure for holding biquad filter coefficients.

function biquad_section<T>(const biquad_section<U> &)

template <typename U>
constexpr biquad_section(const biquad_section<U>& bq) noexcept
    : a0(static_cast<T>(bq.a0)), a1(static_cast<T>(bq.a1)), a2(static_cast<T>(bq.a2)),
      b0(static_cast<T>(bq.b0)), b1(static_cast<T>(bq.b1)), b2(static_cast<T>(bq.b2)) { … }

Defined at dsp/biquad.hpp:66

constructor biquad_section<T>()

constexpr biquad_section() noexcept : a0(1), a1(0), a2(0), b0(1), b1(0), b2(0) { … }

Defined at dsp/biquad.hpp:73

constructor biquad_section<T>(T, T, T, T, T, T)

constexpr biquad_section(T a0, T a1, T a2, T b0, T b1, T b2) noexcept
    : a0(a0), a1(a1), a2(a2), b0(b0), b1(b1), b2(b2) { … }

Defined at dsp/biquad.hpp:74

variable a0

T a0

Defined at dsp/biquad.hpp:78

variable a1

T a1

Defined at dsp/biquad.hpp:79

variable a2

T a2

Defined at dsp/biquad.hpp:80

variable b0

T b0

Defined at dsp/biquad.hpp:81

variable b1

T b1

Defined at dsp/biquad.hpp:82

variable b2

T b2

Defined at dsp/biquad.hpp:83

function normalized_a0()

biquad_section<T> normalized_a0() const

Defined at dsp/biquad.hpp:84

function normalized_b0()

biquad_section<T> normalized_b0() const

Defined at dsp/biquad.hpp:90

function normalized_all()

biquad_section<T> normalized_all() const

Defined at dsp/biquad.hpp:91

Defined at dsp/biquad.hpp:63