Interface UnivariateRealInterpolator
-
- All Known Implementing Classes:
DividedDifferenceInterpolator,LinearInterpolator,LoessInterpolator,NevilleInterpolator,SplineInterpolator
public interface UnivariateRealInterpolatorInterface representing a univariate real interpolating function.- Version:
- $Revision: 821626 $ $Date: 2009-10-04 23:57:30 +0200 (dim. 04 oct. 2009) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UnivariateRealFunctioninterpolate(double[] xval, double[] yval)Computes an interpolating function for the data set.
-
-
-
Method Detail
-
interpolate
UnivariateRealFunction interpolate(double[] xval, double[] yval) throws MathException
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
-
-