public class TrapezoidIntegrator extends BaseAbstractUnivariateIntegrator
The function should be integrable.
| Modifier and Type | Field and Description |
|---|---|
static int |
TRAPEZOID_MAX_ITERATIONS_COUNT
Maximum number of iterations for trapezoid.
|
DEFAULT_ABSOLUTE_ACCURACY, DEFAULT_MAX_ITERATIONS_COUNT, DEFAULT_MIN_ITERATIONS_COUNT, DEFAULT_RELATIVE_ACCURACY| Constructor and Description |
|---|
TrapezoidIntegrator()
Construct a trapezoid integrator with default settings.
|
TrapezoidIntegrator(double relativeAccuracy,
double absoluteAccuracy,
int minimalIterationCount,
int maximalIterationCount)
Build a trapezoid integrator with given accuracies and iterations counts.
|
TrapezoidIntegrator(int minimalIterationCount,
int maximalIterationCount)
Build a trapezoid integrator with given iteration counts.
|
getAbsoluteAccuracy, getEvaluations, getIterations, getMaximalIterationCount, getMinimalIterationCount, getRelativeAccuracy, integratepublic static final int TRAPEZOID_MAX_ITERATIONS_COUNT
public TrapezoidIntegrator(double relativeAccuracy,
double absoluteAccuracy,
int minimalIterationCount,
int maximalIterationCount)
throws NotStrictlyPositiveException,
NumberIsTooSmallException,
NumberIsTooLargeException
relativeAccuracy - 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 TRAPEZOID_MAX_ITERATIONS_COUNTNotStrictlyPositiveException - if minimal number of iterations
is not strictly positiveNumberIsTooSmallException - if maximal number of iterations
is lesser than or equal to the minimal number of iterationsNumberIsTooLargeException - if maximal number of iterations
is greater than TRAPEZOID_MAX_ITERATIONS_COUNTpublic TrapezoidIntegrator(int minimalIterationCount,
int maximalIterationCount)
throws NotStrictlyPositiveException,
NumberIsTooSmallException,
NumberIsTooLargeException
minimalIterationCount - minimum number of iterationsmaximalIterationCount - maximum number of iterations
(must be less than or equal to TRAPEZOID_MAX_ITERATIONS_COUNTNotStrictlyPositiveException - if minimal number of iterations
is not strictly positiveNumberIsTooSmallException - if maximal number of iterations
is lesser than or equal to the minimal number of iterationsNumberIsTooLargeException - if maximal number of iterations
is greater than TRAPEZOID_MAX_ITERATIONS_COUNTpublic TrapezoidIntegrator()
TRAPEZOID_MAX_ITERATIONS_COUNT)Jas4pp 1.5 © Java Analysis Studio for Particle Physics