pub fn interpolate(src: &[cf32], dst: &mut Vec<cf32>, n_between: usize)
Expand description

linearly interpolate n_between samples between each consecutive pair of values in src and write the result to dst. TODO: reference paper which looked at different interpolation techniques and concluded that linear is sufficient for most purposes