Class LinearInterpolator
- java.lang.Object
-
- org.apache.commons.math.analysis.interpolation.LinearInterpolator
-
- All Implemented Interfaces:
UnivariateRealInterpolator
public class LinearInterpolator extends java.lang.Object implements UnivariateRealInterpolator
Implements a linear function for interpolation of real univariate functions.- Since:
- 2.2
-
-
Constructor Summary
Constructors Constructor Description LinearInterpolator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PolynomialSplineFunction
interpolate(double[] x, double[] y)
Computes a linear interpolating function for the data set.
-
-
-
Method Detail
-
interpolate
public PolynomialSplineFunction interpolate(double[] x, double[] y)
Computes a linear interpolating function for the data set.- Specified by:
interpolate
in interfaceUnivariateRealInterpolator
- Parameters:
x
- the arguments for the interpolation pointsy
- the values for the interpolation points- Returns:
- a function which interpolates the data set
- Throws:
DimensionMismatchException
- ifx
andy
have different sizes.NonMonotonousSequenceException
- ifx
is not sorted in strict increasing order.NumberIsTooSmallException
- if the size ofx
is smaller than 2.
-
-