NAG Library Routine Document
G05YMF
Note: before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.
1 Purpose
G05YMF generates a uniformly distributed low-discrepancy sequence as proposed by Sobol, Faure or Niederreiter. It must be preceded by a call to one of the initialization routines
G05YLF or
G05YNF.
2 Specification
INTEGER
N, RCORD, LDQUAS, IREF(), IFAIL
REAL (KIND=nag_wp)
QUAS(LDQUAS,)
3 Description
Low discrepancy (quasi-random) sequences are used in numerical integration, simulation and optimization. Like pseudorandom numbers they are uniformly distributed but they are not statistically independent, rather they are designed to give more even distribution in multidimensional space (uniformity). Therefore they are often more efficient than pseudorandom numbers in multidimensional Monte–Carlo methods.
G05YMF generates a set of points with high uniformity in the -dimensional unit cube .
Let
be a subset of
and define the counting function
as the number of points
. For each
, let
be the rectangular
-dimensional region
with volume
. Then one measure of the uniformity of the points
is the discrepancy:
which has the form
The principal aim in the construction of low-discrepancy sequences is to find sequences of points in with a bound of this form where the constant is as small as possible.
The type of low-discrepancy sequence generated by G05YMF depends on the initialization routine called and can include those proposed by Sobol, Faure or Niederreiter. If the initialization routine
G05YNF was used then the sequence will be scrambled (see
Section 3 in G05YNF for details).
4 References
Bratley P and Fox B L (1988) Algorithm 659: implementing Sobol's quasirandom sequence generator ACM Trans. Math. Software 14(1) 88–100
Fox B L (1986) Algorithm 647: implementation and relative efficiency of quasirandom sequence generators ACM Trans. Math. Software 12(4) 362–376
5 Parameters
Note: the following variables are used in the parameter descriptions:
-
, the number of dimensions required, see G05YLF or G05YNF
-
, the length of IREF as supplied to the initialization routine G05YLF or G05YNF
-
if
; otherwise
- 1: N – INTEGERInput
On entry: the number of quasi-random numbers required.
Constraint:
and .
- 2: RCORD – INTEGERInput
On entry: the order in which the generated values are returned.
Constraint:
or .
- 3: QUAS(LDQUAS,) – REAL (KIND=nag_wp) arrayOutput
On exit: contains the
N quasi-random numbers of dimension
idim.
If , holds the th value for the th dimension.
If , holds the th value for the th dimension.
- 4: LDQUAS – INTEGERInput
On entry: the first dimension of the array
QUAS as declared in the (sub)program from which G05YMF is called.
Constraints:
- if , ;
- if , .
- 5: IREF() – INTEGER arrayCommunication Array
On entry: contains information on the current state of the sequence.
On exit: contains updated information on the state of the sequence.
- 6: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
On entry, either or there have been too many calls to the generator.
On entry, or .
On entry, and .
On entry, and .
Incorrect initialization.
G05YLF must be called prior to G05YMF and
IREF must remain unaltered after this call.
7 Accuracy
Not applicable.
None.
9 Example
This example calls
G05YLF and G05YMF to estimate the value of the integral
In this example the number of dimensions is set to .
9.1 Program Text
Program Text (g05ymfe.f90)
9.2 Program Data
Program Data (g05ymfe.d)
9.3 Program Results
Program Results (g05ymfe.r)