Trait basic_dsp_vector::CrossCorrelationOps [] [src]

pub trait CrossCorrelationOps<S, T, A> where S: ToSliceMut<T>, T: RealNumber {
    fn correlate<B>(&mut self, buffer: &mut B, other: &A) -> VoidResult where B: Buffer<S, T>;
}

A trait to calculate the cross correlation.

Required Methods

Calculates the correlation between self and other. other needs to be a time vector which went through one of the prepare functions prepare_argument or prepare_argument_padded. See also the trait description for more details.

Implementors