functional_band_biquad.Rd
Design two-pole band filter. Similar to SoX implementation.
functional_band_biquad(
waveform,
sample_rate,
central_freq,
Q = 0.707,
noise = FALSE
)
(Tensor): audio waveform of dimension of (..., time)
(int): sampling rate of the waveform, e.g. 44100 (Hz)
(float): central frequency (in Hz)
(float, optional): https://en.wikipedia.org/wiki/Q_factor (Default: 0.707
).
(bool, optional) : If TRUE
, uses the alternate mode for un-pitched audio
(e.g. percussion). If FALSE
, uses mode oriented to pitched audio, i.e. voice, singing,
or instrumental music (Default: FALSE
).
tensor
: Waveform of dimension of (..., time)