convolution-dsp 0.3.0

1-dimensional convolution library intended for use in DSP applications.
Documentation
1
2
3
4
5
6
7
#[derive(Debug)]
pub enum ConvMode {
    /// Returns full length convolution. `filter.len() + signal.len() - 1`
    Full,
    /// Return data is the same size as the largest operand. `filter.len().max(signal.len())`
    Same,
}