basic_dsp
Digital signal processing based on 1xN (one times N) or Nx1 vectors in real or complex number space. Vectors come with basic arithmetic, convolution, Fourier transformation and interpolation operations.
Add this to your Cargo.toml
:
toml
[dependencies]
basic_dsp = "*"
and this to your crate root:
rust
extern crate basic_dsp;
On CPUs with SSE instructions (should be all somewhat recent Intel or AMD desktop CPUs) performance can be improved by compiling the crate with the respective rustc
options. See rustc.sh
or rustc.bat
for an example.
This crate brings vectors in different flavors.
f32
) or double precision (f64
) floating point numbers. This can be used to trade precision against performance. If in doubt then it's likely better to start with double precision floating numbers.The main design goals are:
Welcome!
This project started as small pet project to learn more about DSP, CPU architecture and Rust. Since learning involves making mistakes, don't expect things to be flawless or even close to flawless. In fact issues are expected in all areas (including correctness, stability, performance) and while the crate should be useful already all results should be treated with caution at the same time.