arduino-audio-tools
Loading...
Searching...
No Matches
Public Member Functions | List of all members
BiQuadDF1< T > Class Template Reference

Biquad DF1 Filter. converted from https://github.com/tttapa/Filters/blob/master/src/BiQuad.h Use float or double (and not a integer type) as type parameter. More...

#include <Filter.h>

Inheritance diagram for BiQuadDF1< T >:
Filter< T >

Public Member Functions

 BiQuadDF1 (const T(&b)[3], const T(&a)[2])
 
 BiQuadDF1 (const T(&b)[3], const T(&a)[2], T gain)
 
 BiQuadDF1 (const T(&b)[3], const T(&a)[3])
 
 BiQuadDF1 (const T(&b)[3], const T(&a)[3], T gain)
 
T process (T value)
 

Detailed Description

template<typename T>
class audio_tools::BiQuadDF1< T >

Biquad DF1 Filter. converted from https://github.com/tttapa/Filters/blob/master/src/BiQuad.h Use float or double (and not a integer type) as type parameter.

Author
Pieter P tttapa / pschatzmann
Template Parameters
T

Constructor & Destructor Documentation

◆ BiQuadDF1() [1/4]

template<typename T >
BiQuadDF1 ( const T(&)  b[3],
const T(&)  a[3] 
)
inline

◆ BiQuadDF1() [2/4]

template<typename T >
BiQuadDF1 ( const T(&)  b[3],
const T(&)  a[2] 
)
inline

◆ BiQuadDF1() [3/4]

template<typename T >
BiQuadDF1 ( const T(&)  b[3],
const T(&)  a[2],
T  gain 
)
inline

◆ BiQuadDF1() [4/4]

template<typename T >
BiQuadDF1 ( const T(&)  b[3],
const T(&)  a[3],
T  gain 
)
inline

Member Function Documentation

◆ process()

template<typename T >
T process ( T  value)
inlinevirtual

Implements Filter< T >.


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