Interface UnivariateInterpolator

All Known Implementing Classes:
AkimaSplineInterpolator, DividedDifferenceInterpolator, LinearInterpolator, LoessInterpolator, NevilleInterpolator, SplineInterpolator, UnivariatePeriodicInterpolator

public interface UnivariateInterpolator
Interface representing a univariate real interpolating function.
  • Method Summary

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