void rmv2DSurfaceFit (float *x,
float *y,
float *d,
int npts,
RMvertex2D *omin,
RMvertex2D *omax,
int usize,
int vsize,
int method,
float tweak,
float *newdata)
float *x, *y - arrays of float of (x, y) points. float *d - an array of float of scalar values associated with the
grid points (input). int npts - int specifying the number of points to fit (input). RMvertex2D *omin, *omax - handles to the extents of the grid to fit
(input). int usize, vsize - int specifying the grid resolution for the fitted
surface (input). int method - an integer indicating the method of surface fitting to
use. Must be one of RMV_GRID2D_BIVARIATE, RMV_GRID2D_IDSFFT, or
RMV_GRID2D_KRIGE (input). float tweak - a float specifying the neighborhood size for computing
partial derivatives (input). float *newdata - a handle to an array of float of size (usize *
vsize) for the computed surface points (modified).
librmv library source file: rmvgrid2d.c