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

Example usage for Java org.apache.commons.math.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.math.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}.

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.math.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.