Skip to main content

rbf_interpolate

Function rbf_interpolate 

Source
pub fn rbf_interpolate(
    centers: &[(f64, f64)],
    values: &[f64],
    p: (f64, f64),
) -> f64
Expand description

2D Radial Basis Function interpolation using multiquadric RBF. centers: list of (x, y) center points, values: function value at each center.