Package | Description |
---|---|
org.hipparchus.analysis.interpolation |
Univariate real functions interpolation algorithms.
|
org.hipparchus.analysis.polynomials |
Univariate real polynomials implementations, seen as differentiable
univariate real functions.
|
Modifier and Type | Method | Description |
---|---|---|
PolynomialSplineFunction |
AkimaSplineInterpolator.interpolate(double[] xvals,
double[] yvals) |
Computes an interpolating function for the data set.
|
PolynomialSplineFunction |
LinearInterpolator.interpolate(double[] x,
double[] y) |
Computes a linear interpolating function for the data set.
|
PolynomialSplineFunction |
LoessInterpolator.interpolate(double[] xval,
double[] yval) |
Compute an interpolating function by performing a loess fit
on the data at the original abscissae and then building a cubic spline
with a
SplineInterpolator
on the resulting fit. |
PolynomialSplineFunction |
SplineInterpolator.interpolate(double[] x,
double[] y) |
Computes an interpolating function for the data set.
|
Modifier and Type | Method | Description |
---|---|---|
PolynomialSplineFunction |
PolynomialSplineFunction.polynomialSplineDerivative() |
Get the derivative of the polynomial spline function.
|
Copyright © 2016–2018 Hipparchus.org. All rights reserved.