pub fn rbf_interpolate(
centers: &[(f64, f64)],
values: &[f64],
p: (f64, f64),
) -> f64Expand description
2D Radial Basis Function interpolation using multiquadric RBF. centers: list of (x, y) center points, values: function value at each center.