NAG Library Routine Document

d01rcf (dim1_gen_vec_multi_dimreq)

 Contents

    1  Purpose
    7  Accuracy
    10  Example

1
Purpose

The dimension of the arrays that must be passed as actual arguments to d01raf are dependent upon a number of factors. d01rcf returns the correct size of these arrays enabling d01raf to be called successfully.

2
Specification

Fortran Interface
Subroutine d01rcf ( ni, lenxrq, ldfmrq, sdfmrq, licmin, licmax, lcmin, lcmax, iopts, opts, ifail)
Integer, Intent (In):: ni, iopts(*)
Integer, Intent (Inout):: ifail
Integer, Intent (Out):: lenxrq, ldfmrq, sdfmrq, licmin, licmax, lcmin, lcmax
Real (Kind=nag_wp), Intent (In):: opts(*)
C Header Interface
#include nagmk26.h
void  d01rcf_ (const Integer *ni, Integer *lenxrq, Integer *ldfmrq, Integer *sdfmrq, Integer *licmin, Integer *licmax, Integer *lcmin, Integer *lcmax, const Integer iopts[], const double opts[], Integer *ifail)

3
Description

d01rcf returns the minimum dimension of the arrays x (lenxrq), fm (ldfmrq×sdfmrq), icom (licmin) and com (lcmin) that must be passed to d01raf to enable the integration to commence given options currently set for the ni integrands. d01rcf also returns the upper bounds licmax and lcmax for the dimension of the arrays icom and com, that could possibly be required with the chosen options.
All the minimum values lenxrq, ldfmrq, sdfmrq, licmin and lcmin, and subsequently all the maximum values licmax and lcmax may be affected if different options are set, and hence d01rcf should be called after any options are set, and before the first call to d01raf.
A segment is here defined as a (possibly maximal) subset of the domain of integration. During subdivision, a segment is bisected into two new segments.

4
References

None.

5
Arguments

1:     ni – IntegerInput
On entry: ni, the number of integrals which will be approximated in the subsequent call to d01raf.
Constraint: ni>0.
2:     lenxrq – IntegerOutput
On exit: lenxrq, the minimum dimension of the array x that can be used in a subsequent call to d01raf.
3:     ldfmrq – IntegerOutput
On exit: ldfmrq, the minimum leading dimension of the array fm that can be used in a subsequent call to d01raf.
4:     sdfmrq – IntegerOutput
On exit: sdfmrq, the minimum second dimension of the array fm that can be used in a subsequent call to d01raf.
Note: the minimum dimension of the array fm is ldfmrq×sdfmrq.
5:     licmin – IntegerOutput
On exit: licmin, the minimum dimension of the array icom that must be passed to d01raf to enable it to calculate a single approximation to all the ni integrals over the interval a,b with spri initial segments.
6:     licmax – IntegerOutput
On exit: licmax the dimension of the array icom that must be passed to d01raf to enable it to exhaust the adaptive process controlled by the currently set options for the ni integrals over the interval a,b with spri initial segments.
7:     lcmin – IntegerOutput
On exit: lcmin, the minimum dimension of the array com that must be passed to d01raf to enable it to calculate a single approximation to all the ni integrals over the interval a,b with spri initial segments.
8:     lcmax – IntegerOutput
On exit: lcmax, the dimension of the array com that must be passed to d01raf to enable it to exhaust the adaptive process controlled by the currently set options for the ni integrals over the interval a,b with spri initial segments.
9:     iopts* – Integer arrayCommunication Array
Note: the dimension of this array is dictated by the requirements of associated functions that must have been previously called. This array must be the same array passed as argument iopts in the previous call to d01zkf.
On entry: the integer option array as returned by d01zkf.
Constraint: iopts must not be changed between calls to d01zkf, d01zlf, d01rcf and d01raf.
10:   opts* – Real (Kind=nag_wp) arrayCommunication Array
Note: the dimension of this array is dictated by the requirements of associated functions that must have been previously called. This array must be the same array passed as argument opts in the previous call to d01zkf.
On entry: the real option array as returned by d01zkf.
Constraint: opts must not be changed between calls to d01zkf, d01zlf, d01rcf and d01raf.
11:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this argument, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=21
On entry, ni=value.
Constraint: ni>0.
ifail=1001
One of the option arrays iopts or opts has become corrupted. Re-initialize the arrays using d01zkf.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

Not applicable.

8
Parallelism and Performance

d01rcf is not threaded in any implementation.

9
Further Comments

None.

10
Example

See Section 10 in d01raf for examples of the usage of d01rcf.
© The Numerical Algorithms Group Ltd, Oxford, UK. 2017