hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_quad_1d_gen_vec_multi_rcomm (d01ra)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_quad_1d_gen_vec_multi_rcomm (d01ra) is a general purpose adaptive integrator which calculates an approximation to a vector of definite integrals F over a finite range a,b , given the vector of integrands fx.
F = a b fx d x  
If the same subdivisions of the range are equally good for functions f1x and f2x, because f1x and f2x have common areas of the range where they vary slowly and where they vary quickly, then we say that f1x and f2x are ‘similar’. nag_quad_1d_gen_vec_multi_rcomm (d01ra) is particularly effective for the integration of a vector of similar functions.

Syntax

[irevcm, sid, needi, x, nx, dinest, errest, icom, com, ifail] = d01ra(irevcm, a, b, needi, x, nx, fm, dinest, errest, iopts, opts, icom, com, 'ni', ni, 'lenx', lenx)
[irevcm, sid, needi, x, nx, dinest, errest, icom, com, ifail] = nag_quad_1d_gen_vec_multi_rcomm(irevcm, a, b, needi, x, nx, fm, dinest, errest, iopts, opts, icom, com, 'ni', ni, 'lenx', lenx)

Description

nag_quad_1d_gen_vec_multi_rcomm (d01ra) is an extension to various QUADPACK routines, including QAG, QAGS and QAGP. The extensions made allow multiple integrands to be evaluated simultaneously, using a vectorized interface and reverse communication.
The quadrature scheme employed by nag_quad_1d_gen_vec_multi_rcomm (d01ra) can be chosen by you. Six Gauss–Kronrod schemes are available. The algorithm incorporates a global acceptance criterion (as defined by Malcolm and Simpson (1976)), optionally together with the ε-algorithm (see Wynn (1956)) to perform extrapolation. The local error estimation is described in Piessens et al. (1983).
nag_quad_1d_gen_vec_multi_rcomm (d01ra) is the integration function in the suite of functions nag_quad_1d_gen_vec_multi_rcomm (d01ra) and nag_quad_1d_gen_vec_multi_dimreq (d01rc). It also uses optional parameters, which can be set and queried using the functions nag_quad_opt_set (d01zk) and nag_quad_opt_get (d01zl) respectively. The options available are described in Optional Parameters.
First, the option arrays iopts and opts must be initialized using nag_quad_opt_set (d01zk). Thereafter any required options must be set before calling nag_quad_1d_gen_vec_multi_rcomm (d01ra), or the function nag_quad_1d_gen_vec_multi_dimreq (d01rc).
A typical usage of this suite of functions is (in pseudo-code for clarity),
Setup phase
iopts = zeros(100, 1, nag_int_name);
opts  = zeros(100, 1);

% initialize option arrays
[iopts, opts, ifail] = d01zk('Initialize = d01ra', iopts, opts);

% set any non-default options required
[iopts, opts, ifail] = d01zk('option = value', iopts, opts);
...

% determine maximum required array lengths
[lenxrq, ldfmrq, sdfmrq, licmin, licmax, lcmin, lcmax, ifail] = ...
      d01rc(ni, iopts, opts);

% allocate remaining arrays
needi  = zeros(ni, 1, nag_int_name);
com    = zeros(lcmax, 1);
icom   = zeros(licmax, 1, nag_int_name);
fm     = zeros(ldfmrq, sdfmrq);
dinest = zeros(ni, 1);
errest = zeros(ni, 1);
x      = zeros(1, lenxrq);
Solve phase
irevcm = nag_int(1);

while irevcm ~= 0
  [irevcm, sid, needi, x, nx, dinest, errest, icomm, comm, ifail] = ...
    d01ra(irevcm, a, b, needi, x, nx, fm, dinest, errest, ...
          iopts, opts, icom, com);

  switch irevcm
    case 11
        Initial solve phase 
        evaluate fm(1:ni,1:nx)
    case(12)        Adaptive solve phase 
        evaluate fm(needi(1:ni)=1,1:nx)
    case(0)
        Final return
  end
Diagnostic phase
[ivalue, rvalue, cvalue, optype, ifail] = d01zl('option', iopts, opts);
During the initial solve phase, the first estimation of the definite integral and error estimate is constructed over the interval a,b . This will have been divided into spri  level 1 segments, where spri  is the number of Primary Divisions, and will use any provided break-points if Primary Division Mode=MANUAL.
Once a complete integral estimate over a,b  is available, i.e., after all the estimates for the level 1 segments have been evaluated, the function enters the adaptive phase. The estimated errors are tested against the requested tolerances εa  and εr , corresponding to the Absolute Tolerance and Relative Tolerance respectively. Should this test fail, and additional subdivision be allowed, a segment is selected for subdivision, and is subsequently replaced by two new segments at the next level of refinement. How this segment is chosen may be altered by setting Prioritize Error to either favour the segment with the maximum error, or the segment with the lowest level supporting an unacceptable (although potentially non-maximal) error. Up to maxsdiv  subdivisions are allowed if sufficient memory is provided, where maxsdiv  is the value of Maximum Subdivisions.
Once a sufficient number of error estimates have been constructed for a particular integral, the function may optionally use Extrapolation to attempt to accelerate convergence. This may significantly lower the amount of work required for a given integration. To minimize the risk of premature convergence from extrapolation, a safeguard εsafe  can be set using Extrapolation Safeguard, and the extrapolated solution will only be considered if εsafe εq εex , where εq  and εex  are the estimated error directly from the quadrature and from the extrapolation respectively. If extrapolation is successful for the computation of integral j, the extrapolated solution will be returned in dinestj on completion of nag_quad_1d_gen_vec_multi_rcomm (d01ra). Otherwise the direct solution will be returned in dinestj. This is indicated by the value of needij on completion.

References

Malcolm M A and Simpson R B (1976) Local versus global strategies for adaptive quadrature ACM Trans. Math. Software 1 129–146
Piessens R (1973) An algorithm for automatic integration Angew. Inf. 15 399–401
Piessens R, de Doncker–Kapenga E, Überhuber C and Kahaner D (1983) QUADPACK, A Subroutine Package for Automatic Integration Springer–Verlag
Wynn P (1956) On a device for computing the emSn transformation Math. Tables Aids Comput. 10 91–96

Parameters

Note: this function uses reverse communication. Its use involves an initial entry, intermediate exits and re-entries, and a final exit, as indicated by the argument irevcm. Between intermediate exits and re-entries, all arguments other than irevcm, needi and fm must remain unchanged.

Compulsory Input Parameters

1:     irevcm int64int32nag_int scalar
On initial entry: irevcm=1.
irevcm=1
Sets up data structures in icom and com and starts a new integration.
Constraint: irevcm=1 on initial entry.
On intermediate re-entry: irevcm should normally be left unchanged. However, if irevcm is set to a negative value, nag_quad_1d_gen_vec_multi_rcomm (d01ra) will terminate, (see irevcm=11 and irevcm=12 above).
2:     a – double scalar
a, the lower bound of the domain.
3:     b – double scalar
b, the upper bound of the domain.
If b-a<10ε, where ε is the machine precision (see nag_machine_precision (x02aj)), then nag_quad_1d_gen_vec_multi_rcomm (d01ra) will return dinestj=errestj=0.0, for j=1,2,,ni.
4:     needini int64int32nag_int array
On initial entry: need not be set.
On intermediate re-entry: needij may be used to indicate what action you have taken for integral j.
needij=1
You have provided the values fjxi in fmji, for i=1,2,,nx.
needij<0
You are abandoning the evaluation of integral j. The current values of dinestj and errestj will be returned on final completion.
Otherwise you have not provided the value fjxi.
5:     xlenx – double array
On initial entry: if Primary Division Mode=AUTOMATIC, x need not be set. This is the default behaviour.
If Primary Division Mode=MANUAL, x is used to supply a set of initial ‘break-points’ inside the domain of integration. Specifically, xi must contain a break-point xi0, for i=1,2,,spri-1, where spri is the number of Primary Divisions.
Constraint: if break-points are supplied, xi0a,b, xi0-a>10.0ε, xi0-b>10.0ε, for i=1,2,,spri-1.
6:     nx int64int32nag_int scalar
On initial entry: need not be set.
On intermediate re-entry: must not be changed.
7:     fmldfm: – double array
The first dimension of the array fm must be at least ldfmrq, where ldfmrq is dependent upon ni and the options currently set. ldfmrq is returned as ldfmrq from nag_quad_1d_gen_vec_multi_dimreq (d01rc). If default options are chosen, ldfmrq=ni, implying ldfmni.
The second dimension of the array fm must be at least sdfmrq, where sdfmrq is dependent upon ni and the options currently set. sdfmrq is returned as sdfmrq from nag_quad_1d_gen_vec_multi_dimreq (d01rc). If default options are chosen, sdfmrq=lenxrq.
On initial entry: need not be set.
On intermediate re-entry: if indicated by needij you must supply the values fjxi in fmji, for i=1,2,,nx and j=1,2,,ni.
8:     dinestni – double array
dinestj contains the current estimate of the definite integral Fj.
On initial entry: need not be set.
On intermediate re-entry: must not be altered.
9:     errestni – double array
errestj contains the current error estimate of the definite integral Fj.
On initial entry: need not be set.
On intermediate re-entry: must not be altered.
10:   iopts100 int64int32nag_int array
11:   opts100 – double array
The arrays iopts and opts must not be altered between calls to any of the functions nag_quad_1d_gen_vec_multi_rcomm (d01ra), nag_quad_1d_gen_vec_multi_dimreq (d01rc), nag_quad_opt_set (d01zk) and nag_quad_opt_get (d01zl).
12:   icomlicom int64int32nag_int array
licom, the dimension of the array, must satisfy the constraint licomlicmin, where licmin is dependent upon ni and the current options set. licmin is returned as licmin from nag_quad_1d_gen_vec_multi_dimreq (d01rc). If the default options are set, then licmin=55+6×ni. Larger values than licmin are recommended if you anticipate that any integrals will require the domain to be further subdivided..
icom contains details of the integration procedure, including information on the integration of the ni integrals over individual segments. This data is stored sequentially in the order that segments are created. For further information see Details of the Computation.
13:   comlcom – double array
lcom, the dimension of the array, must satisfy the constraint lcom>lcmin, where lcmin is dependent upon ni, spri and the current options set. lcmin is returned as lcmin from nag_quad_1d_gen_vec_multi_dimreq (d01rc). If default options are set, then lcmin =96+12×ni. Larger values are recommended if you anticipate that any integrals will require the domain to be further subdivided.
Given the current options and arguments, the maximum value, lcmax, of lcom that may be required, is returned as lcmax from nag_quad_1d_gen_vec_multi_dimreq (d01rc). If default options are chosen, lcmax=94+9×ni+ni/2 +spri+100×2+ni/2+2×ni.
.
com contains details of the integration procedure, including information on the integration of the ni integrals over individual segments. This data is stored sequentially in the order that segments are created. For further information see Details of the Computation.

Optional Input Parameters

1:     ni int64int32nag_int scalar
Default: the dimension of the arrays needi, dinest, errest and the first dimension of the array fm. (An error is raised if these dimensions are not equal.)
ni, the number of integrands.
2:     lenx int64int32nag_int scalar
Default: the dimension of the array x.
The dimension of the array x. currently lenx=max122,spri-1 will be sufficient for all cases.
Constraint: lenxlenxrq, where lenxrq is dependent upon the options currently set (see Optional Parameters). lenxrq is returned as lenxrq from nag_quad_1d_gen_vec_multi_dimreq (d01rc).

Output Parameters

1:     irevcm int64int32nag_int scalar
On intermediate exit: irevcm=11 or 12.
irevcm requests the integrands fjxi be evaluated for all required j1,,ni as indicated by needi, and at all the points xi, for i=1,2,,nx. Abscissae xi are provided in xi and fjxi must be returned in fmji.
During the initial solve phase:
irevcm=11
Function values are required to construct the initial estimates of the definite integrals.
If needij=1, fjxi must be supplied in fmji. This will be the case unless you have abandoned the evaluation of specific integrals on a previous call.
If needij=0, you have previously abandoned the evaluation of integral j, and hence should not supply the value of fjxi.
dinest and errest contain incomplete information during this phase. As such you should not abandon the evaluation of any integrals during this phase unless you do not require their estimate.
If irevcm is set to a negative value during this phase, needij, for j=1,2,,ni, will be set to this negative value and ifail=-1 will be returned.
During the adaptive solve phase:
irevcm=12
Function values are required to improve the estimates of the definite integrals.
If needij=0, any evaluation of fjxi will be discarded, so there is no need to provide them.
If needij=1, fjxi must be provided in fmji.
If needij=2, 3 or 4, the current error estimate of integral j does not require integrand j to be evaluated and provided in fmji. Should you choose to, integrand j can be evaluated in which case needij must be set to 1.
dinest and errest contain complete information during this phase.
If irevcm is set to a negative value during this phase ifail=1, 2 or 3 will be returned and the elements of needi will reflect the current state of the adaptive process.
On final exit: irevcm=0.
irevcm=0
Indicates the algorithm has completed.
2:     sid int64int32nag_int scalar
On intermediate exit: sid identifies a specific set of abscissae, x, returned during the integration process. When a new set of abscissae are generated the value of sid is incremented by 1. Advanced users may store calculations required for an identified set x, and reuse them should nag_quad_1d_gen_vec_multi_rcomm (d01ra) return the same value of sid, i.e., the same set of abscissae was used.
3:     needini int64int32nag_int array
On intermediate exit: needij indicates what action must be taken for integral j=1,2,ni (see irevcm).
needij=0
Do not provide fjxi. Any provided values will be ignored.
needij=1
The values fjxi must be provided in fmji, for i=1,2,,nx.
needij=2
The values fjxi are not required, however the error estimate for integral j is still above the requested tolerance. If you wish to provide values for the evaluation of integral j, set needij=1, and supply fjxi in fmji, for i=1,2,,nx.
needij=3
The error estimate for integral j cannot be improved to below the requested tolerance directly, either because no more new splits may be performed due to exhaustion, or due to the detection of extremely bad integrand behaviour. However, providing the values fjxi may still lead to some improvement, and may lead to an acceptable error estimate indirectly using Wynn's epsilon algorithm. If you wish to provide values for the evaluation of integral j, set needij=1, and supply fjxi in fmji, for i=1,2,,nx.
needij=4
The error estimate of integral j is below the requested tolerance. If you believe this to be false, if for example the result in dinestj is greatly different to what you may expect, you may force the algorithm to re-evaluate this conclusion by including the evaluations of integrand j at xi, for i=1,2,,nx, and setting needij=1. Integral and error estimation will be performed again during the next iteration.
On final exit: needij indicates the final state of integral j.
needij=0
The error estimate for Fj is below the requested tolerance.
needij=1
The error estimate for Fj is below the requested tolerance after extrapolation.
needij=2
The error estimate for Fj is above the requested tolerance.
needij=3
The error estimate for Fj is above the requested tolerance, and extremely bad behaviour of integral j has been detected.
needij<0
You prohibited further evaluation of integral j.
4:     xlenx – double array
On intermediate exit: xi is the abscissa xi, for i=1,2,,nx, at which the appropriate integrals must be evaluated.
5:     nx int64int32nag_int scalar
On intermediate exit: nx, the number of abscissae at which integrands are required.
6:     dinestni – double array
dinestj contains the current estimate of the definite integral Fj.
Contains the current estimates of the ni integrals. If irevcm=0, this will be the final solution.
7:     errestni – double array
errestj contains the current error estimate of the definite integral Fj.
Contains the current error estimates for the ni integrals. If irevcm=0, errest contains the final error estimates of the ni integrals.
8:     icomlicom int64int32nag_int array
9:     comlcom – double array
10:   ifail int64int32nag_int scalar
On final exit: ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Note: nag_quad_1d_gen_vec_multi_rcomm (d01ra) may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the function:

Cases prefixed with W are classified as warnings and do not generate an error of type NAG:error_n. See nag_issue_warnings.

W  ifail=1
At least one error estimate exceeded the requested tolerances.
W  ifail=2
Extremely bad behaviour was detected for at least one integral.
W  ifail=3
Extremely bad behaviour was detected for at least one integral. At least one other integral error estimate was above the requested tolerance.
   ifail=11
irevcm had an illegal value.
   ifail=21
Constraint: ni1.
   ifail=71
On entry, Primary Division Mode=MANUAL and at least one supplied break-point in x is outside of the domain of integration.
   ifail=81
   ifail=111
W  ifail=171
W  ifail=191
   ifail=1001
Either the option arrays iopts and opts have not been initialized for nag_quad_1d_gen_vec_multi_rcomm (d01ra), or they have become corrupted.
   ifail=1101
On entry, one of icom and com has become corrupted.
W  ifail=-1
Evaluation of all integrals has been stopped during the initial phase.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

nag_quad_1d_gen_vec_multi_rcomm (d01ra) cannot guarantee, but in practice usually achieves, the following accuracy for each integral Fj:
Fj - dinestj tol  
where
tol = maxεa, εr × Fj  
εa and εr are the error tolerances Absolute Tolerance and Relative Tolerance respectively. Moreover, it returns errest, the entries of which in normal circumstances satisfy,
Fj - dinestj errestj tol .  

Further Comments

The time required by nag_quad_1d_gen_vec_multi_rcomm (d01ra) is usually dominated by the time required to evaluate the values of the integrands fj.
nag_quad_1d_gen_vec_multi_rcomm (d01ra) will be most efficient if any badly behaved integrands provided have irregularities over similar subsections of the domain. For example, evaluation of the integrals,
0 1 logx x-12 x2 dx  
will be quite efficient, as the irregular behaviour of the first two integrands is at x=0. On the contrary, the evaluation of the integrals,
0 1 logx log1-x dx  
will be less efficient, as the two integrands have singularities at opposite ends of the domain, which will result in subdivisions which are only of use to one integrand. In such cases, it will be more efficient to use two sets of calls to nag_quad_1d_gen_vec_multi_rcomm (d01ra).
nag_quad_1d_gen_vec_multi_rcomm (d01ra) will flag extremely bad behaviour if a sub-interval k-  with bounds ak-,bk-  satisfying bk- - ak- < maxδa, δr × b-a  has a local error estimate greater than the requested tolerance for at least one integral. The values δa and δr can be set through the optional parameters Absolute Interval Minimum and Relative Interval Minimum respectively.

Details of the Computation

This section is recommended for expert users only. It describes the contents of the arrays com and icom upon exit from nag_quad_1d_gen_vec_multi_rcomm (d01ra) with ifail=0, 1, 2 or 3, and provided at least one iteration completed, failure due to insufficient licom or lcom.
The arrays icom and com contain details of the integration, including various scalars, one-dimensional arrays, and (effectively) two-dimensional arrays. The dimensions of these arrays vary depending on the arguments and options used and the progress of the algorithm. Here we describe some of these details, including how and where they are stored in icom and com.
Scalar quantities:
The indices in icom including the following scalars are available via query only options, see Diagnostic Options. For example, Ildi is the integer value returned by the option Index LDI.
ldi The leading dimension of the two-dimensional integer arrays stored in icom detailed below.
ldi=icomIldi.
ldr The leading dimension of the two-dimensional real arrays stored in com detailed below.
ldr=icomIldr.
nsdiv The number of segments that have been subdivided during the adaptive process.
nsdiv=icomInsdiv.
nseg The total number of segments formed.
nseg=2nsdiv+spri.
nseg=icomInseg.
dsp The reference of the first element of the array ds stored in com.
dsp=icomIdsp.
esp The reference of the first element of the array es stored in com.
esp=icomIesp.
evalsp The reference of the first element of the array evals stored in icom.
evalsp=icomIevalsp.
fcp The reference of the first element of the array fcount stored in icom.
fcp=icomIfcp.
sinforp The reference of the first element of the array sinfor stored in com.
sinforp=icomIsinforp.
sinfoip The reference of the first element of the array sinfoi stored in icom.
sinfoip=icomIsinfoip.
One-dimensional arrays:
fcountni 
fcount1=icomfcp.
fcountj contains the number of different approximations of integral j calculated, for j=1,2,,ni.
Two-dimensional arrays:
sinfoi5nseg 
sinfoi11=icomsinfoip.
sinfoi contains information about the hierarchy of splitting.
sinfoi1k contains the split identifier for segment k, for k=1,2,,nseg.
sinfoi2k contains the parent segment number of segment k (i.e., the segment was split to create segment k), for k=1,2,,nseg.
sinfoi3k and sinfoi4k contain the segment numbers of the two child segments formed from segment k, if segment k has been split. If segment k has not been split, these will be negative.
sinfoi5k contains the level at which the segment exists, corresponding to na+1, where na is the number of ancestor segments of segment k, for k=1,2,,nseg. A negative level indicates that segment k will not be split further, the level is then given by the absolute value of sinfoi5k.
sinfor2nseg 
sinfor11=comsinforp.
sinfor contains the bounds of each segment.
sinfor1k contains the lower bound of segment k, for k=1,2,,nseg.
sinfor2k contains the upper bound of segment k, for k=1,2,,nseg.
evalsninseg 
evals11=icomevalsp.
evals contains information to indicate whether an estimate of the integral j has been obtained over segment k, and if so whether this evaluation still contributes to the direct estimate of Fj, for j=1,2,,ni and k=1,2,,nseg.
evalsjk=0 indicates that integral j has not been evaluated over segment k.
evalsjk=1 indicates that integral j has been evaluated over segment k, and that this evaluation contributes to the direct estimate of Fj.
evalsjk=2 indicates that integral j has been evaluated over segment k, that this evaluation contributes to the direct estimate of Fj, and that you have requested no further evaluation of this integral at this segment by setting needij<0.
evalsjk=3 indicates that integral j has been evaluated over segment k, and this evaluation no longer contributes to the direct estimate of Fj.
evalsjk=4 indicates that integral j has been evaluated over segment k, that this evaluation contributes to the direct estimate of Fj, and that this segment is too small for any further splitting to be performed. Integral j also has a local error estimate over this segment above the requested tolerance. Such segments cause nag_quad_1d_gen_vec_multi_rcomm (d01ra) to return ifail=2 or 3, indicating extremely bad behaviour.
evalsjk=5 indicates that integral j has been evaluated over segment k, that this evaluation contributes to the direct estimate of Fj, and that this segment is too small for any further splitting to be performed. The local error estimate is however below the requested tolerance.
dsninseg 
ds11=comdsp.
dsjk contains the definite integral estimate of the jth integral over the kth segment, dsj,k, provided it has been evaluated, for j=1,2,,ni and k=1,2,,nseg.
esninseg 
es11=comesp.
esjk contains the definite integral error estimate of the jth integral over the kth segment, esj,k, provided it has been evaluated, for j=1,2,,ni and k=1,2,,nseg.
For each integral j, the direct approximation Dj of Fj, and its error estimate Ej, may be constructed as,
Fj Dj = Kj dsj,k , Fj-Dj Ej = Kj esj,k ,  
where Kj is the set of all contributing segments, Kj=kevalsjk=1, ​2, ​4​ or ​5, ​1knseg. Dj will have been returned in dinestj, unless extrapolation was successful, as indicated by needij.
Similarly, Ej will have been returned in errestj unless extrapolation was successful, in which case the error estimate from the extrapolation will have been returned. If for a given integral j one or more contributing segments have unacceptable error estimates, it may be possible to improve the direct approximation by replacing the contributions from these segments with more accurate estimates should these be calculable by some means. Indeed for any segment k-k, with lower bound ak-=sinfor1,k- and upper bound bk-=sinfor2,k-, one may alter the direct approximation Dj by the following,
ds j,k- new ak- bk- fjx ​ ​ dx Dj = Kj ds j,k - ds j , k- + ds j,k- new .  
The error estimate Ej may be altered similarly.

Example

This example integrates
F = 0 π x sin2x cos15x x2 sin2x cos50x dx .  
function d01ra_example


fprintf('d01ra example results\n\n');


  % Setup phase.

  % set problem parameters
  ni = int64(2);
  nx = int64(0);
  % lower (a) and upper (b) bounds
  a = 0;
  b = pi;
  iopts = zeros(100, 1, 'int64');
  opts  = zeros(100, 1);

  % initialize option arrays
  [iopts, opts, ifail] = d01zk('Initialize = d01ra', iopts, opts);

  % set any non-default options required
  [iopts, opts, ifail] = d01zk('Quadrature Rule = gk41', iopts, opts);
  [iopts, opts, ifail] = d01zk('Absolute Tolerance = 1.0e-7', iopts, opts);
  [iopts, opts, ifail] = d01zk('Relative Tolerance = 1.0e-7', iopts, opts);

  % determine maximum required array lengths
  [lenxrq, ldfmrq, sdfmrq, licmin, licmax, lcmin, lcmax, ifail] = ...
        d01rc(ni, iopts, opts);

  % allocate remaining arrays
  needi  = zeros(ni, 1, 'int64');
  comm   = zeros(lcmax, 1);
  icomm  = zeros(licmax, 1, 'int64');
  fm     = zeros(ldfmrq, sdfmrq);
  dinest = zeros(ni, 1);
  errest = zeros(ni, 1);
  x      = zeros(1, lenxrq);

  % Solve phase.

  % Use d01ra to evaluate the definate integrals of:
  %   f_1 = (x*sin(2*x))*cos(15*x)
  %   f_2 = (x*sin(2*x))*(x*cos(50*x))

  % set initial irevcm
  irevcm = int64(1);

  while irevcm ~= 0
    [irevcm, sid, needi, x, nx, dinest, errest, icomm, comm, ifail] = ...
      d01ra(irevcm, a, b, needi, x, nx, fm, dinest, errest, ...
            iopts, opts, icomm, comm);

    switch irevcm
      case 11
        % Initial returns.
        % These will occur during the non-adaptive phase.
        % All values must be supplied.
        % dinest and errest do not contain approximations
        % over the complete interval at this stage.

        % Calculate x*sin(2*x), storing the result in fm(2,1:nx) for re-use.
        fm(2, :) = x.*sin(2*x);

        % Calculate f_1
        fm(1, :) = fm(2, :).*cos(15*x);

        % Calculate f_2
        fm(2, :) = fm(2, :).*x.*cos(50*x);
      case 12
        % Intermediate returns.
        % These will occur during the adaptive phase.
        % All requested values must be supplied.
        % dinest and errest do not contain approximations
        % over the complete interval at this stage.

        % Calculate x*sin(2*x).
        fm(2, :) = x.*sin(2*x);

        % Calculate f_1 if required
        if needi(1) == 1
          fm(1, :) = fm(2, :).*cos(15*x);
        end

        % Complete f_2 calculation if required.
        if needi(2) == 1
          fm(2, :) = fm(2, :).*x.*cos(50*x);
        end
      case 0
        % Final return
    end
  end

  % query some currently set options and statistics.
  [ivalue, rvalue, cvalue, optype, ifail] = ...
     d01zl('Quadrature rule', iopts, opts);
  display_option('Quadrature rule',optype,ivalue,rvalue,cvalue);
  [ivalue, rvalue, cvalue, optype, ifail] = ...
     d01zl('Maximum Subdivisions', iopts, opts);
  display_option('Maximum Subdivisions',optype,ivalue,rvalue,cvalue);
  [ivalue, rvalue, cvalue, optype, ifail] = ...
     d01zl('Extrapolation', iopts, opts);
  display_option('Extrapolation',optype,ivalue,rvalue,cvalue);
  [ivalue, rvalue, cvalue, optype, ifail] = ...
     d01zl('Extrapolation Safeguard', iopts, opts);
  display_option('Extrapolation Safeguard',optype,ivalue,rvalue,cvalue);

  % print solution
  fprintf('\nIntegral |  needi  |   dinest   |   errest   \n');
  for j=1:ni
    fprintf('%9d %9d %12.4e %12.4e\n', j, needi(j), dinest(j), errest(j));
  end



function [dinest, errest, user] = monit(ni, ns, dinest, errest, fcount, ...
                                        sinfoi, evals, ldi, sinfor, fs, ...
                                        es, ldr, user)
  % Display information on individual segments
  fprintf('\nInformation on splitting and evaluations over subregions.\n');
  for k=1:ns
    sid = sinfoi(1,k);
    parent = sinfoi(2,k);
    child1 = sinfoi(3,k);
    child2 = sinfoi(4,k);
    level = sinfoi(5,k);
    lbnd = sinfor(1,k);
    ubnd = sinfor(2,k);
    fprintf('\nSegment %3d Sid = %3d', k, sid);
    fprintf(' Parent = %3d Level = %3d.\n', parent, level);
    if (child1>0)
      fprintf('Children = (%3d, %3d)\n', child1, child2);
    end
    fprintf('Bounds (%11.4e, %11.4e)\n', lbnd, ubnd);
    for j = 1:ni
      if (evals(j,k) ~= 0)
        fprintf('Integral %2d approximation %11.4e\n', j, fs(j,k));
        fprintf('Integral %2d error estimate %11.4e\n', j, es(j,k));
      end
      if (evals(j,k) ~= 1)
        fprintf('Integral %2d evaluation', j);
        fprintf(' has been superseded by descendants.\n');
      end
    end
  end

function display_option(optstr,optype,ivalue,rvalue,cvalue)
  % Query optype and print the appropriate option values

  switch optype
    case 1
      fprintf('%30s: %13d\n', optstr, ivalue);
    case 2
      fprintf('%30s: %13.4e\n', optstr, rvalue);
    case 3
      fprintf('%30s: %16s\n', optstr, cvalue);
    case 4
      fprintf('%30s: %3d  %16s\n', optstr, ivalue, cvalue);
    case 5
      fprintf('%30s: %14.4e  %16s\n', optstr, rvalue, cvalue);
  end
d01ra example results

               Quadrature rule: GK41                            
          Maximum Subdivisions:            50
                 Extrapolation: ON                              
       Extrapolation Safeguard:    1.0000e-12

Integral |  needi  |   dinest   |   errest   
        1         0  -2.8431e-02   1.1234e-14
        2         0   7.9083e-03   2.6600e-09

Optional Parameters

This section can be skipped if you wish to use the default values for all optional parameters, otherwise, the following is a list of the optional parameters available. A full description of each optional parameter is provided in Description of the s.
The following optional parameters, see Diagnostic Options, may be utilized by expert users in conjunction with the information provided in Details of the Computation.

Description of the Optional Parameters

For each option, we give a summary line, a description of the optional parameter and details of constraints.
The summary line contains:
The following symbol represents various machine constants:
All options accept the value ‘DEFAULT’ in order to return single options to their default states.
Keywords and character values are case insensitive, however they must be separated by at least one space.
Unsetable options will return the appropriate value when calling nag_quad_opt_get (d01zl). They will have no effect if passed to nag_quad_opt_set (d01zk).
For nag_quad_1d_gen_vec_multi_rcomm (d01ra) the maximum length of the argument cvalue used by nag_quad_opt_get (d01zl) is 15.
Absolute Interval Minimum  r
Default =128.0ε
r=δa, the absolute lower limit for a segment to be considered for subdivision. See also Relative Interval Minimum and Further Comments.
Constraint: r128ε.
Absolute Tolerance  r
Default =1024ε
r=εa, the absolute tolerance required. See also Relative Tolerance and Description.
Constraint: r0.0.
Extrapolation  a
Default =ON
Activate or deactivate the use of the ε algorithm (Wynn (1956)). Extrapolation often reduces the number of iterations required to achieve the desired solution, but it can occasionally lead to premature convergence towards an incorrect answer.
ON
Use extrapolation.
OFF
Disable extrapolation.
Extrapolation Safeguard  r
Default =1.0e−12
r=εsafe. If εq is the estimated error from the quadrature evaluation alone, and εex is the error estimate determined using extrapolation, then the extrapolated solution will only be accepted if εsafe εq εex.
Maximum Subdivisions  i
Default =50
i=maxsdiv, the maximum number of subdivisions the algorithm may use in the adaptive phase, forming at most an additional 2×maxsdiv  segments.
Primary Divisions  i
Default =1
i=spri, the number of initial segments of the domain a,b. By default the initial segment is the entire domain.
Constraint: 0<i<1000000.
Primary Division Mode  a
Default =AUTOMATIC
Determines how the initial set of spri segments will be generated.
AUTOMATIC
nag_quad_1d_gen_vec_multi_rcomm (d01ra) will automatically generate spri segments of equal size covering the interval a,b.
MANUAL
nag_quad_1d_gen_vec_multi_rcomm (d01ra) will use the break-points xi0, for i=1,2,,spri-1, supplied in x on initial entry to generate the initial segments covering a,b. These may be supplied in any order, however it will be more efficient to supply them in ascending (or descending if a>b) order. Repeated break-points are allowed, although this will generate fewer initial segments.
Note: an absolute bound on the size of an initial segment of 10.0ε is automatically applied in all cases, and will result in fewer initial subdivisions being generated if automatically generated or supplied break-points result in segments smaller than this..
Prioritize Error  a
Default=LEVEL
Indicates how new subdivisions of segments sustaining unacceptable local errors for integrals should be prioritized.
LEVEL
Segments with lower level with unsatisfactory error estimates will be chosen over segments with greater error on higher levels. This will probably lead to more integrals being improved in earlier iterations of the algorithm, and hence will probably lead to fewer repeated returns (see argument sid), and to more integrals being satisfactorily estimated if computational exhaustion occurs.
MAXERR
The segment with the worst overall error will be split, regardless of level. This will more rapidly improve the worst integral estimates, although it will probably result in the fewest integrals being improved in earlier iterations, and may hence lead to more repeated returns (see argument sid), and potentially fewer integrals satisfying the requested tolerances if computational exhaustion occurs.
Quadrature Rule  a
Default =GK15
The basic quadrature rule to be used during the integration. Currently 6 Gauss–Kronrod rules are available, all identifiable by the letters GK followed by the number of points required by the Kronrod rule. Higher order rules generally provide higher accuracy with fewer subdivisons. However, for integrands with sharp singularities, lower order rules may be more efficient, particularly if the integrand away from the singularity is well behaved. With higher order rules, you may need to increase the Absolute Interval Minimum and the Relative Interval Minimum to maintain numerical difference between the abscissae and the segment bounds.
GK15
The Gauss–Kronrod rule based on 7 Gauss points and 15 Kronrod points.
GK21
The Gauss–Kronrod rule based on 10 Gauss points and 21 Kronrod points. This is the rule used by nag_quad_1d_fin_bad_vec (d01at)
GK31
The Gauss–Kronrod rule based on 15 Gauss points and 31 Kronrod points.
GK41
The Gauss–Kronrod rule based on 20 Gauss points and 41 Kronrod points.
GK51
The Gauss–Kronrod rule based on 25 Gauss points and 51 Kronrod points.
GK61
The Gauss–Kronrod rule based on 30 Gauss points and 61 Kronrod points. This is the highest order rule, most suitable for highly oscilliatory integrals.
Relative Interval Minimum  r
Default =1.0e−6
r=δr, the relative factor in the lower limit, δrb-a, for a segment to be considered for subdivision. See also Absolute Interval Minimum and Further Comments.
Constraint: r0.0.
Relative Tolerance  r
Default =ε 
r=εr, the required relative tolerance. See also Absolute Tolerance and Description.
Constraint: r0.0.
Note: setting both εr=εa=0.0 is possible, although it will most likely result in an excessive amount of computational effort.

Diagnostic Options

These options are provided for expert users who wish to examine and modify the precise details of the computation. They should only be used after nag_quad_1d_gen_vec_multi_rcomm (d01ra) returns, as opposed to the options listed in Description of the s which must be used before the first call to nag_quad_1d_gen_vec_multi_rcomm (d01ra).
Index LDI  i
query only
Ildi, the index of icom required for obtaining ldi. See Details of the Computation.
Index LDR  i
query only
Ildr, the index of icom required for obtaining ldr. See Details of the Computation.
Index NSDIV  i
query only
Insdiv, the index of icom required for obtaining nsdiv. See Details of the Computation.
Index NSEG  i
query only
Inseg, the index of icom required for obtaining nseg. See Details of the Computation.
Index FCP  i
query only
Ifcp, the index of icom required for obtaining fcp. See Details of the Computation.
Index EVALSP  i
query only
Ievalsp, the index of icom required for obtaining evalsp. See Details of the Computation.
Index DSP  i
query only
Idsp, the index of icom required for obtaining dsp. See Details of the Computation.
Index ESP  i
query only
Iesp, the index of icom required for obtaining esp. See Details of the Computation.
Index SINFOIP  i
query only
Isinfoip, the index of icom required for obtaining sinfoip. See Details of the Computation.
Index SINFORP  i
query only
Isinforp, the index of icom required for obtaining sinforp. See Details of the Computation.

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015