pub trait WaveletTransformVec {
// Required methods
fn forward(&self, input: &[f64]) -> Vec<f64> ⓘ;
fn inverse(&self, coeffs: &[f64]) -> Vec<f64> ⓘ;
}
Available on crate features
alloc
and wave
only.Expand description
Trait defining essential wavelet transform operations.