Class OrthogonalPolynomialFunctionGenerator
- java.lang.Object
-
- com.opengamma.strata.math.impl.function.special.OrthogonalPolynomialFunctionGenerator
-
- Direct Known Subclasses:
HermitePolynomialFunction
,JacobiPolynomialFunction
,LaguerrePolynomialFunction
,LegendrePolynomialFunction
,OrthonormalHermitePolynomialFunction
public abstract class OrthogonalPolynomialFunctionGenerator extends Object
-
-
Constructor Summary
Constructors Constructor Description OrthogonalPolynomialFunctionGenerator()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected DoubleFunction1D
getOne()
abstract DoubleFunction1D[]
getPolynomials(int n)
abstract Pair<DoubleFunction1D,DoubleFunction1D>[]
getPolynomialsAndFirstDerivative(int n)
protected DoubleFunction1D
getX()
protected DoubleFunction1D
getZero()
-
-
-
Method Detail
-
getPolynomials
public abstract DoubleFunction1D[] getPolynomials(int n)
-
getPolynomialsAndFirstDerivative
public abstract Pair<DoubleFunction1D,DoubleFunction1D>[] getPolynomialsAndFirstDerivative(int n)
-
getZero
protected DoubleFunction1D getZero()
-
getOne
protected DoubleFunction1D getOne()
-
getX
protected DoubleFunction1D getX()
-
-