basic_dsp 0.7.0

Digital signal processing based on real or complex vectors in time or frequency domain. Vectors come with basic arithmetic, convolution, Fourier transformation and interpolation operations. The vectors are optimized for sizes of a couple of thousand elements or more. The same operations are provdided for matrices. For complete matrix algebra this lib is intended to be used in combination with other matrix libs. Please refer to the documentation for more information about this.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "interop")]
extern crate basic_dsp_interop;
#[cfg(feature = "matrix")]
extern crate basic_dsp_matrix;
extern crate basic_dsp_vector;

pub use basic_dsp_vector::*;

#[cfg(feature = "matrix")]
pub mod matrix {
    pub use basic_dsp_matrix::*;
}

#[cfg(feature = "interop")]
pub mod interop {
    pub use basic_dsp_interop::*;
}