Rbf2DInterpolator
A two-dimensional Radial Basis Function (RBF) interpolator.
This class provides functionality to interpolate values in a 2D space using Radial Basis Functions (RBFs). It computes interpolated values for input points based on given data points, their corresponding values, and an RBF kernel that defines the basis function.
Parameters
A list of 2D points representing the locations of the input data.
A 2D array of weights corresponding to each point for each output dimension.
A 2D array of known function values at the given points.
The radial basis function that defines how the influence of each point decreases with distance. It takes a squared distance as input and returns a scalar value.
The mean values for each output dimension, used to offset the interpolated results.