GaussKronrod¶
(Source code
, png
)
- class GaussKronrod(*args)¶
Adaptive integration algorithm of Gauss-Kronrod.
- Parameters:
- maximumSubIntervalsint
The maximal number of subdivisions of the interval
- maximumErrorfloat
The maximal error between Gauss and Kronrod approximations.
- GKRule
GaussKronrodRule
The rule that fixes the number of points used in the Gauss and Kronrod approximations.
Methods
GetRuleFromName
(name)Get the integration rule corresponding to the given name.
GetRules
()Get the collection of available integration rules.
Accessor to the object's name.
Accessor to the maximal error between Gauss and Kronrod approximations.
Accessor to the maximal number of subdivisions of .
getName
()Accessor to the object's name.
getRule
()Accessor to the Gauss-Kronrod rule used in the integration algorithm.
hasName
()Test if the object is named.
integrate
(*args)Evaluation of the integral of on an interval.
setMaximumError
(maximumError)Set the maximal error between Gauss and Kronrod approximations.
setMaximumSubIntervals
(maximumSubIntervals)Set the maximal number of subdivisions of .
setName
(name)Accessor to the object's name.
setRule
(rule)Set the Gauss-Kronrod rule used in the integration algorithm.
Notes
We consider a function and a domain where .The Gauss-Kronrod algorithm approximates the definite integral:
(1)¶
using both Gauss and Kronrod approximations, using the rule defined in
GaussKronrodRule
.The Gauss-Kronrod algorithm evaluates the integral using the Gauss and the Konrod approximations. If the difference between both approximations is larger that maximumError, then the interval is subdivided into 2 subintervals with the same length. The Gauss-Kronrod algorithm is then applied on both subintervals with the sames rules.
The algorithm is iterative until the difference between both approximations is less that maximumError. In that case, the integral on the subinterval is approximated by the Kronrod sum.
The subdivision process is limited by maximumSubIntervals that imposes the maximum number of subintervals.
The final integral is the sum of the integrals evaluated on all the subintervals as follows:
It is possible to get all the subintervals with a particular use of the method
integrate()
.Note that the integral over each subinterval uses the Gauss-Kronrod algorithm where the integrand function is rescaled by the mapping function:
(2)¶
so that we have:
(3)¶
where we introduced the scaled function on defined by:
We get the nodes used to compute (1) by mapping the nodes computed by
GaussKronrodRule
in according the the particular rule through each mapping function defined in (2). The associated weights are multiplied by the length of the subinterval .When the function with , use the iterated quadrature algorithm of the
IteratedQuadrature
class.Examples
Create a Gauss-Kronrod algorithm:
>>> import openturns as ot >>> algo = ot.GaussKronrod(100, 1e-8, ot.GaussKronrodRule(ot.GaussKronrodRule.G11K23))
- __init__(*args)¶
- static GetRuleFromName(name)¶
Get the integration rule corresponding to the given name.
- Parameters:
- namestr
The Gauss-Kronrod rule name.
- Returns:
- rule
GaussKronrodRule
The rule corresponding to the given name.
- rule
- static GetRules()¶
Get the collection of available integration rules.
- Returns:
- rules
GaussKronrodRuleCollection
Rules available for the integration.
- rules
- getClassName()¶
Accessor to the object’s name.
- Returns:
- class_namestr
The object class name (object.__class__.__name__).
- getMaximumError()¶
Accessor to the maximal error between Gauss and Kronrod approximations.
- Returns:
- maximumErrorvaluefloat, positive
The maximal error between Gauss and Kronrod approximations.
- getMaximumSubIntervals()¶
Accessor to the maximal number of subdivisions of .
- Returns:
- maximumSubIntervalsfloat, positive
The maximal number of subdivisions of the interval .
- getName()¶
Accessor to the object’s name.
- Returns:
- namestr
The name of the object.
- getRule()¶
Accessor to the Gauss-Kronrod rule used in the integration algorithm.
- Returns:
- rule
GaussKronrodRule
The Gauss-Kronrod rule used in the integration algorithm.
- rule
- hasName()¶
Test if the object is named.
- Returns:
- hasNamebool
True if the name is not empty.
- integrate(*args)¶
Evaluation of the integral of on an interval.
- Available usages:
integrate(f, interval)
integrate(f, interval, error)
integrate(f, a, b, error, ai, bi, fi, ei)
- Parameters:
- f
Function
, The integrand function.
- interval
Interval
, The integration domain.
- error
Point
The error estimation of the approximation.
- a,bfloat
Bounds of the integration interval.
- ai, bi, ei
Point
; ai is the set of lower bounds of the subintervals;
bi the corresponding upper bounds;
ei the associated error estimation;
When used as input parameters, they should be empty. They are then respectively filled with the lower and upper bounds of the subintervals, and the error value.
- fi
Sample
fi is the set of
- f
- Returns:
- value
Point
Approximation of the integral.
- value
Examples
>>> import openturns as ot >>> f = ot.SymbolicFunction(['x'], ['abs(sin(x))']) >>> a = -2.5 >>> b = 4.5 >>> algoGK = ot.GaussKronrod(100, 1e-8, ot.GaussKronrodRule(ot.GaussKronrodRule.G11K23))
Use the high-level usage:
>>> value = algoGK.integrate(f, ot.Interval(a, b))[0] >>> print(value) 4.590...
Use the low-level usage:
>>> error = ot.Point() >>> ai = ot.Point() >>> bi = ot.Point() >>> ei = ot.Point() >>> fi = ot.Sample() >>> value2 = algoGK.integrate(f, a, b, error, ai, bi, fi, ei)[0] >>> print(value2) 4.590...
- setMaximumError(maximumError)¶
Set the maximal error between Gauss and Kronrod approximations.
- Parameters:
- maximumErrorvaluefloat, positive
The maximal error between Gauss and Kronrod approximations.
- setMaximumSubIntervals(maximumSubIntervals)¶
Set the maximal number of subdivisions of .
- Parameters:
- maximumSubIntervalsfloat, positive
The maximal number of subdivisions of the interval .
- setName(name)¶
Accessor to the object’s name.
- Parameters:
- namestr
The name of the object.
- setRule(rule)¶
Set the Gauss-Kronrod rule used in the integration algorithm.
- Parameters:
- rule
GaussKronrodRule
The Gauss-Kronrod rule used in the integration algorithm.
- rule
Examples using the class¶
Integrate a function with Gauss-Kronrod algorithm
Estimate a multivariate integral with IteratedQuadrature