5 releases
Uses new Rust 2024
new 0.1.3 | Mar 27, 2025 |
---|---|
0.1.2 | Mar 26, 2025 |
0.1.1 | Mar 26, 2025 |
0.1.0 | Mar 25, 2025 |
0.0.7 | Mar 22, 2025 |
#1 in #filters
561 downloads per month
54KB
863 lines
Digital Biquad Filters
This repository contains a collection of digital biquad filters implemented in Rust.
The filters are based off the C++ implementation, which can be found here.
Brief:
For information on biquad filters, you can check out my website here.
Usage:
To add the filters to your project, run the following Cargo command in your project directory:
cargo add biquad-filters-rust
Then, simply create an instance of a filter and process your data:
/// Import the biquad_filters crate
use biquad_filters::{Filter, LowPassFilter};
/// Define some dummy data to operate on
let n: usize = 100;
let mut samples: Vec<f64> = vec![0.0_f64; n];
/// Create the filter
/// This is a low-pass filter with a cutoff frequency at 1000 Hz,
/// a sample rate of 44100 Hz, and a Q factor of 0.707
let filter = LowPassFilter::<f64>::new(
1000.0_f64,
44100_u32,
std::f64::consts::FRAC_1_SQRT_2
).expect("Failed to create filter");
/// Process the data in-place
filter.process_block(&mut samples);
When using the filter's ::new
function, it returns an Option
so
you can check if the filter was created successfully.
Supported Filters:
- Generic Digital Biquad
- Low Pass
- High Pass
- Band Pass
- Notch
- All Pass
- Peaking EQ
- Low Shelf
- High Shelf
Notes:
- It's always recommended to template the filters as
f64
for the best precision and to reduce the chance of encountering quantization noise. While processing blocks off32
samples will be faster, the precision of the filter will be reduced.
Dependencies
~185KB