functional_biquad.Rd
Perform a biquad filter of input tensor. Initial conditions set to 0. https://en.wikipedia.org/wiki/Digital_biquad_filter
functional_biquad(waveform, b0, b1, b2, a0, a1, a2)
(Tensor): audio waveform of dimension of (..., time)
(float): numerator coefficient of current input, x[n]
(float): numerator coefficient of input one time step ago x[n-1]
(float): numerator coefficient of input two time steps ago x[n-2]
(float): denominator coefficient of current output y[n], typically 1
(float): denominator coefficient of current output y[n-1]
(float): denominator coefficient of current output y[n-2]
tensor
: Waveform with dimension of (..., time)