See: Description
Interface | Description |
---|---|
LineBracketInterpolator<EvaluatorType extends Evaluator<java.lang.Double,java.lang.Double>> |
Definition of an interpolator/extrapolator for a LineBracket.
|
Class | Description |
---|---|
AbstractLineBracketInterpolator<EvaluatorType extends Evaluator<java.lang.Double,java.lang.Double>> |
Partial implementation of LinearBracketInterpolator
|
AbstractLineBracketInterpolatorPolynomial<EvaluatorType extends Evaluator<java.lang.Double,java.lang.Double>> |
Partial implementation of a LineBracketInterpolator based on a closed-form
polynomial function.
|
LineBracketInterpolatorBrent |
Implements Brent's method of function interpolation to find a minimum.
|
LineBracketInterpolatorGoldenSection |
Interpolates between the two bound points of a LineBracket using the
golden-section step rule, if that step fails, then the interpolator uses
a linear (secant) interpolation.
|
LineBracketInterpolatorHermiteCubic |
Interpolates using a cubic with two points, both of which must have
slope information.
|
LineBracketInterpolatorHermiteParabola |
Interpolates using a parabola with two points, at least one of which must
have slope information.
|
LineBracketInterpolatorLinear |
Interpolates using a linear (stright-line) curve between two
points, neither of which need slope information.
|
LineBracketInterpolatorParabola |
Interpolates using a parabola based on three points without
slope information.
|