Package org.apache.commons.math.analysis.interpolation
Univariate real functions interpolation algorithms.
-
Interface Summary Interface Description BivariateRealGridInterpolator Interface representing a bivariate real interpolating function where the sample points must be specified on a regular grid.MultivariateRealInterpolator Interface representing a univariate real interpolating function.TrivariateRealGridInterpolator Interface representing a trivariate real interpolating function where the sample points must be specified on a regular grid.UnivariateRealInterpolator Interface representing a univariate real interpolating function. -
Class Summary Class Description BicubicSplineInterpolatingFunction Function that implements the bicubic spline interpolation.BicubicSplineInterpolator Generates a bicubic interpolating function.DividedDifferenceInterpolator Implements the Divided Difference Algorithm for interpolation of real univariate functions.LinearInterpolator Implements a linear function for interpolation of real univariate functions.LoessInterpolator Implements the Local Regression Algorithm (also Loess, Lowess) for interpolation of real univariate functions.MicrosphereInterpolatingFunction Interpolating function that implements the Microsphere Projection.MicrosphereInterpolator Interpolator that implements the algorithm described in William Dudziak's MS thesis.NevilleInterpolator Implements the Neville's Algorithm for interpolation of real univariate functions.SmoothingBicubicSplineInterpolator Deprecated. This class does not perform smoothing; the name is thus misleading.SmoothingPolynomialBicubicSplineInterpolator Generates a bicubic interpolation function.SplineInterpolator Computes a natural (also known as "free", "unclamped") cubic spline interpolation for the data set.TricubicSplineInterpolatingFunction Function that implements the tricubic spline interpolation, as proposed inTricubic interpolation in three dimensions
F.TricubicSplineInterpolator Generates a tricubic interpolating function.