Expand description
Resampling (up/down), Interpolation
Functionsยง
- downsample
- downsample samples from
src
intodst
with the ratio given bysrc.len()/dst.len()
TODO: doc - downsample_
sb - uses the nightly step_by adaptor on iterator TODO: doc
- interpolate
- linearly interpolate
n_between
samples between each consecutive pair of values insrc
and write the result todst
. TODO: reference paper which looked at different interpolation techniques and concluded that linear is sufficient for most purposes