pub fn approx1_uniform<T, P>(
input: &Array<T>,
pos: &Array<P>,
interp_dim: i32,
start: f64,
step: f64,
method: InterpType,
off_grid: f32,
) -> Array<T>Expand description
Perform signal interpolation for 1d signals along specified dimension
§Parameters
inputis the input ArrayposArray contains the interpolation locationsinterp_dimis the dimension along which interpolation is performedstartis the first index alonginterp_dimstepis the uniform spacing value between subsequent indices alonginterp_dimmethodindicates the type of interpolation method that be used. It is of type enum InterpTypeoff_gridis the value that will set in the output Array when certain index is out of bounds
§Return Values
An Array with interpolated values