Interface BivariateGridInterpolator

All Known Implementing Classes:
BicubicInterpolator, BicubicSplineInterpolator, PiecewiseBicubicSplineInterpolator, SmoothingPolynomialBicubicSplineInterpolator

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
    interpolate(double[] xval, double[] yval, double[][] fval)
    Compute an interpolating function for the dataset.