Interface UnivariateRealInterpolator
- All Known Implementing Classes:
DividedDifferenceInterpolator,LinearInterpolator,LoessInterpolator,NevilleInterpolator,SplineInterpolator
public interface UnivariateRealInterpolator
Interface representing a univariate real interpolating function.
-
Method Summary
Modifier and TypeMethodDescriptioninterpolate(double[] xval, double[] yval) Computes an interpolating function for the data set.
-
Method Details
-
interpolate
Computes an interpolating function for the data set.- Parameters:
xval- the arguments for the interpolation pointsyval- the values for the interpolation points- Returns:
- a function which interpolates the data set
- Throws:
MathException- if arguments violate assumptions made by the interpolation algorithm
-