microdsp 0.1.3

DSP algorithms and utilities. Performant, embedded friendly and no_std compatible.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Common algorithms and utilities.

mod autocorr;
mod f32_array_ext;
mod fft;
mod midi;
mod window_function;
mod window_processor;

pub use autocorr::{autocorr_conv, autocorr_fft, autocorr_fft_size};
pub use f32_array_ext::F32ArrayExt;
pub use fft::real_fft;
pub use midi::freq_to_midi_note;
pub use window_function::{apply_window_function, WindowFunctionType};
pub use window_processor::WindowProcessor;