pub fn modwt_multilevel_into<T: SignalType>(
signal: Signal<T>,
wavelet: &dyn Wavelet,
levels: usize,
) -> Result<MultilevelMODWTResult<T>>Expand description
Perform multi-level MODWT (Maximal Overlap DWT) - consuming version
This version consumes the input signal, avoiding the need to clone it. Use this when you no longer need the original signal after transformation.