iir_int: remove spurious note

This commit is contained in:
Robert Jördens 2021-01-26 19:23:23 +01:00
parent 2b439a0231
commit 73c98c947a
1 changed files with 0 additions and 2 deletions

View File

@ -19,8 +19,6 @@ impl IIRState {
///
/// # Returns
/// 2nd-order IIR filter coefficients in the form [b0,b1,b2,a1,a2]. a0 is set to -1.
///
/// # Note
pub fn lowpass(f: f64, q: f64, k: f64) -> IIRState {
// 3rd order Taylor approximation of sin and cos.
let f = f * 2. * PI;