createHPF

Calculates biquad high-pass filter coefficients from the supplied values.

@nogc nothrow pure public @safe
BiquadFilterValues
createHPF
(
float fs
,
float f0
,
float q
)

Parameters

fs float

Sampling frequency.

f0 float

Corner frequency.

q float

The Q factor of the filter.

Return Value

Type: BiquadFilterValues

A struct with the coefficient values for the filter.

Meta