#filter #forms #signal-processing #direct #iir #digital #second

no-std biquad

A library for digital second order IIR filtrers, also known as biquads

7 unstable releases

0.4.2 Jan 14, 2022
0.4.1 Apr 22, 2021
0.4.0 Jan 16, 2021
0.3.1 Apr 10, 2020
0.1.0 Jul 24, 2018

#601 in Embedded development

Download history 711/week @ 2023-11-20 564/week @ 2023-11-27 856/week @ 2023-12-04 505/week @ 2023-12-11 536/week @ 2023-12-18 243/week @ 2023-12-25 426/week @ 2024-01-01 333/week @ 2024-01-08 435/week @ 2024-01-15 421/week @ 2024-01-22 472/week @ 2024-01-29 490/week @ 2024-02-05 467/week @ 2024-02-12 593/week @ 2024-02-19 418/week @ 2024-02-26 474/week @ 2024-03-04

1,979 downloads per month
Used in 6 crates

MIT/Apache

40KB
873 lines

biquad

Build Status

biquad is a #![no_std] library for creating first and second order IIR filters for signal processing based on Biquads. Both a Direct Form 1 (DF1) and Direct Form 2 Transposed (DF2T) implementation is available, where the DF1 is better used when the filter needs retuning online, as it has the property to introduce minimal artifacts under retuning, while the DF2T is best used for static filters as it has the least computational complexity and best numerical stability.

This crate implements the biquads for f32 and f64.

Example

fn main() {
    use biquad::*;

    // Cutoff and sampling frequencies
    let f0 = 10.hz();
    let fs = 1.khz();

    // Create coefficients for the biquads
    let coeffs = Coefficients::<f32>::from_params(Type::LowPass, fs, f0, Q_BUTTERWORTH_F32).unwrap();

    // Create two different biquads
    let mut biquad1 = DirectForm1::<f32>::new(coeffs);
    let mut biquad2 = DirectForm2Transposed::<f32>::new(coeffs);

    let input_vec = vec![0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0];
    let mut output_vec1 = Vec::new();
    let mut output_vec2 = Vec::new();

    // Run for all the inputs
    for elem in input_vec {
        output_vec1.push(biquad1.run(elem));
        output_vec2.push(biquad2.run(elem));
    }
}

Documentation

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~435KB