Uses of Class
org.hipparchus.analysis.polynomials.PolynomialFunction
Package
Description
Univariate real functions interpolation algorithms.
Univariate real polynomials implementations, seen as differentiable
univariate real functions.
Root finding algorithms, for univariate real functions.
-
Uses of PolynomialFunction in org.hipparchus.analysis.interpolation
Modifier and TypeMethodDescriptionHermiteInterpolator.getPolynomials()
Compute the interpolation polynomials. -
Uses of PolynomialFunction in org.hipparchus.analysis.polynomials
Modifier and TypeClassDescriptionstatic class
Specific smoothstep function that cannot be built using theSmoothStepFactory.getGeneralOrder(int)
.static class
Smoothstep function as defined here.Modifier and TypeMethodDescriptionPolynomialFunction.add
(PolynomialFunction p) Add a polynomial to the instance.PolynomialFunction.antiDerivative()
Returns an anti-derivative of this polynomial, with 0 constant term.static PolynomialFunction
PolynomialsUtils.createChebyshevPolynomial
(int degree) Create a Chebyshev polynomial of the first kind.static PolynomialFunction
PolynomialsUtils.createHermitePolynomial
(int degree) Create a Hermite polynomial.static PolynomialFunction
PolynomialsUtils.createJacobiPolynomial
(int degree, int v, int w) Create a Jacobi polynomial.static PolynomialFunction
PolynomialsUtils.createLaguerrePolynomial
(int degree) Create a Laguerre polynomial.static PolynomialFunction
PolynomialsUtils.createLegendrePolynomial
(int degree) Create a Legendre polynomial.PolynomialSplineFunction.getPolynomials()
Get a copy of the interpolating polynomials array.PolynomialFunction.multiply
(PolynomialFunction p) Multiply the instance by a polynomial.PolynomialFunction.negate()
Negate the instance.PolynomialFunction.polynomialDerivative()
Returns the derivative as aPolynomialFunction
.PolynomialFunction.subtract
(PolynomialFunction p) Subtract a polynomial from the instance.Modifier and TypeMethodDescriptionPolynomialFunction.add
(PolynomialFunction p) Add a polynomial to the instance.PolynomialFunction.multiply
(PolynomialFunction p) Multiply the instance by a polynomial.PolynomialFunction.subtract
(PolynomialFunction p) Subtract a polynomial from the instance.ModifierConstructorDescriptionPolynomialSplineFunction
(double[] knots, PolynomialFunction[] polynomials) Construct a polynomial spline function with the given segment delimiters and interpolating polynomials. -
Uses of PolynomialFunction in org.hipparchus.analysis.solvers
Modifier and TypeMethodDescriptionprotected void
AbstractPolynomialSolver.setup
(int maxEval, PolynomialFunction f, double min, double max, double startValue) Prepare for computation.