Interface BivariateGridInterpolator

All Known Implementing Classes:
BicubicInterpolator, PiecewiseBicubicSplineInterpolator

public interface BivariateGridInterpolator
Interface representing a bivariate real interpolating function where the sample points must be specified on a regular grid.
  • Method Summary

    Modifier and Type Method Description
    BivariateFunction interpolate​(double[] xval, double[] yval, double[][] fval)
    Compute an interpolating function for the dataset.