average_interpolation

Function average_interpolation 

Source
pub fn average_interpolation<M: Clone, P: GetXY + GetZ, R: GetM<M>, V: Interpolatable>(
    _point: &P,
    ref_data: &[R],
    get_value: GetInterpolateValue<R, V>,
) -> V
Expand description

§Average Neighbor Interpolation

§Description

Finds the avarage point in the reference data to the given point and returns its value.

§Usage