public final class quadrature_integrator
extends java.lang.Object
Integrators
[@constant] QUADRATURE_INTEGRATE_QNG Simple non-adaptive automatic integrator using Gauss-Kronrod-Patterson quadrature coefficients. Evaluates 21, or 43, or 87 points in the interval until the requested accuracy is reached. No workspace is necessary for this integrator.
[@constant] QUADRATURE_INTEGRATE_QAG Simple globally adaptive integrator. Allows selection of the number of Gauss-Kronrod points used in each subinterval, and the max number of subintervals.
[@constant] QUADRATURE_INTEGRATE_QAGS Global adaptive quadrature based on 21-point or 15-point (if at least one bound is infinite) Gauss–Kronrod quadrature within each subinterval, with acceleration by Peter Wynn's epsilon algorithm. If at least one of the interval bounds is infinite, this is equivalent to the QUADPACK QAGI routine. Otherwise, this is equivalent to the QUADPACK QAGS routine.
| Modifier and Type | Field and Description |
|---|---|
static int |
QUADRATURE_INTEGRATE_QAG |
static int |
QUADRATURE_INTEGRATE_QAGS |
static int |
QUADRATURE_INTEGRATE_QNG |
public static final int QUADRATURE_INTEGRATE_QNG
public static final int QUADRATURE_INTEGRATE_QAG
public static final int QUADRATURE_INTEGRATE_QAGS