Java org.apache.commons.math3.analysis.polynomials PolynomialSplineFunction fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Constructor

PolynomialSplineFunction(double knots[], PolynomialFunction polynomials[])
Construct a polynomial spline function with the given segment delimiters and interpolating polynomials.

Method

UnivariateFunctionderivative()
Get the derivative of the polynomial spline function.
double[]getKnots()
Get an array copy of the knot points.
intgetN()
Get the number of spline segments.
PolynomialFunction[]getPolynomials()
Get a copy of the interpolating polynomials array.
doublevalue(double v)
Compute the value for the function.
DerivativeStructurevalue(final DerivativeStructure t)