org.apache.commons.math.analysis.interpolation
public class LinearInterpolator extends Object implements UnivariateRealInterpolator
Constructor and Description |
---|
LinearInterpolator() |
Modifier and Type | Method and Description |
---|---|
PolynomialSplineFunction |
interpolate(double[] x,
double[] y)
Computes a linear interpolating function for the data set.
|
public PolynomialSplineFunction interpolate(double[] x, double[] y)
interpolate
in interface UnivariateRealInterpolator
x
- the arguments for the interpolation pointsy
- the values for the interpolation pointsDimensionMismatchException
- if x
and y
have different sizes.NonMonotonousSequenceException
- if x
is not sorted in strict increasing order.NumberIsTooSmallException
- if the size of x
is smaller
than 2.Copyright (c) 2003-2013 Apache Software Foundation