Java org.apache.commons.math3.analysis.interpolation LoessInterpolator fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.analysis.interpolation LoessInterpolator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.analysis.interpolation LoessInterpolator.

The text is from its open source code.

Constructor

LoessInterpolator()
Constructs a new LoessInterpolator with a bandwidth of #DEFAULT_BANDWIDTH , #DEFAULT_ROBUSTNESS_ITERS robustness iterations and an accuracy of {#link #DEFAULT_ACCURACY}.
LoessInterpolator(double bandwidth, int robustnessIters, double accuracy)
Construct a new LoessInterpolator with given bandwidth, number of robustness iterations and accuracy.
LoessInterpolator(double bandwidth, int robustnessIters)
Construct a new LoessInterpolator with given bandwidth and number of robustness iterations.

Method

PolynomialSplineFunctioninterpolate(final double[] xval, final 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 org.apache.commons.math3.analysis.interpolation.SplineInterpolator on the resulting fit.
double[]smooth(final double[] xval, final double[] yval)
Compute a loess fit on the data at the original abscissae.