T
- Type of the field elements.public class FieldSimpsonIntegrator<T extends CalculusFieldElement<T>> extends BaseAbstractFieldUnivariateIntegrator<T>
This implementation employs the basic trapezoid rule to calculate Simpson's rule.
Modifier and Type | Field and Description |
---|---|
static int |
SIMPSON_MAX_ITERATIONS_COUNT
Maximal number of iterations for Simpson.
|
DEFAULT_ABSOLUTE_ACCURACY, DEFAULT_MAX_ITERATIONS_COUNT, DEFAULT_MIN_ITERATIONS_COUNT, DEFAULT_RELATIVE_ACCURACY, iterations
Constructor and Description |
---|
FieldSimpsonIntegrator(Field<T> field)
Construct an integrator with default settings.
|
FieldSimpsonIntegrator(Field<T> field,
double relativeAccuracy,
double absoluteAccuracy,
int minimalIterationCount,
int maximalIterationCount)
Build a Simpson integrator with given accuracies and iterations counts.
|
FieldSimpsonIntegrator(Field<T> field,
int minimalIterationCount,
int maximalIterationCount)
Build a Simpson integrator with given iteration counts.
|
Modifier and Type | Method and Description |
---|---|
protected T |
doIntegrate()
Method for implementing actual integration algorithms in derived
classes.
|
computeObjectiveValue, getAbsoluteAccuracy, getEvaluations, getField, getIterations, getMax, getMaximalIterationCount, getMin, getMinimalIterationCount, getRelativeAccuracy, integrate, setup
public static final int SIMPSON_MAX_ITERATIONS_COUNT
public FieldSimpsonIntegrator(Field<T> field, double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount) throws MathIllegalArgumentException
field
- field to which function argument and value belongrelativeAccuracy
- relative accuracy of the resultabsoluteAccuracy
- absolute accuracy of the resultminimalIterationCount
- minimum number of iterationsmaximalIterationCount
- maximum number of iterations
(must be less than or equal to SIMPSON_MAX_ITERATIONS_COUNT
)MathIllegalArgumentException
- if minimal number of iterations
is not strictly positiveMathIllegalArgumentException
- if maximal number of iterations
is lesser than or equal to the minimal number of iterationsMathIllegalArgumentException
- if maximal number of iterations
is greater than SIMPSON_MAX_ITERATIONS_COUNT
public FieldSimpsonIntegrator(Field<T> field, int minimalIterationCount, int maximalIterationCount) throws MathIllegalArgumentException
field
- field to which function argument and value belongminimalIterationCount
- minimum number of iterationsmaximalIterationCount
- maximum number of iterations
(must be less than or equal to SIMPSON_MAX_ITERATIONS_COUNT
)MathIllegalArgumentException
- if minimal number of iterations
is not strictly positiveMathIllegalArgumentException
- if maximal number of iterations
is lesser than or equal to the minimal number of iterationsMathIllegalArgumentException
- if maximal number of iterations
is greater than SIMPSON_MAX_ITERATIONS_COUNT
public FieldSimpsonIntegrator(Field<T> field)
field
- field to which function argument and value belong
(max iteration count set to SIMPSON_MAX_ITERATIONS_COUNT
)protected T doIntegrate() throws MathIllegalStateException
doIntegrate
in class BaseAbstractFieldUnivariateIntegrator<T extends CalculusFieldElement<T>>
MathIllegalStateException
- if the maximal number of evaluations
is exceeded.Copyright © 2016-2021 CS GROUP. All rights reserved.