NAG Library Function Document
nag_quasi_rand_uniform (g05ymc)
1 Purpose
nag_quasi_rand_uniform (g05ymc) 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 functions
nag_quasi_init (g05ylc) or
nag_quasi_init_scrambled (g05ync).
2 Specification
#include <nag.h> |
#include <nagg05.h> |
void |
nag_quasi_rand_uniform (Nag_OrderType order,
Integer n,
double quas[],
Integer pdquas,
Integer iref[],
NagError *fail) |
|
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.
nag_quasi_rand_uniform (g05ymc) 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 nag_quasi_rand_uniform (g05ymc) depends on the initialization function called and can include those proposed by Sobol, Faure or Niederreiter. If the initialization function
nag_quasi_init_scrambled (g05ync) was used then the sequence will be scrambled (see
Section 3 in nag_quasi_init_scrambled (g05ync) 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 Arguments
Note: the following variables are used in the parameter descriptions:
- 1:
order – Nag_OrderTypeInput
-
On entry: the
order argument specifies the two-dimensional storage scheme being used, i.e., row-major ordering or column-major ordering. C language defined storage is specified by
. See
Section 3.2.1.3 in the Essential Introduction for a more detailed explanation of the use of this argument.
Constraint:
or .
- 2:
n – IntegerInput
On entry: the number of quasi-random numbers required.
Constraint:
and .
- 3:
quas[] – doubleOutput
Note: the dimension,
dim, of the array
quas
must be at least
.
Where
appears in this document, it refers to the array element
- when ;
- when .
On exit: holds the th value for the th dimension.
- 4:
pdquas – IntegerInput
-
On entry: the stride separating row or column elements (depending on the value of
order) in the array
quas.
Constraints:
- if , ;
- if , .
- 5:
iref[] – IntegerCommunication Array
On entry: contains information on the current state of the sequence.
On exit: contains updated information on the state of the sequence.
- 6:
fail – NagError *Input/Output
-
The NAG error argument (see
Section 3.6 in the Essential Introduction).
6 Error Indicators and Warnings
- NE_BAD_PARAM
-
On entry, argument had an illegal value.
- NE_INITIALIZATION
-
On entry,
iref has either not been initialized or has been corrupted.
- NE_INT
-
On entry, .
Constraint: .
- NE_INT_2
-
On entry, , .
Constraint: if , .
On entry, and .
Constraint: if , .
- NE_INTERNAL_ERROR
-
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact
NAG for assistance.
- NE_TOO_MANY_CALLS
-
On entry, value of
n would result in too many calls to the generator:
, generator has previously been called
times.
7 Accuracy
Not applicable.
8 Parallelism and Performance
nag_quasi_rand_uniform (g05ymc) is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the
Users' Note for your implementation for any additional implementation-specific information.
The Sobol, Sobol (A659) and Niederreiter quasi-random number generators in nag_quasi_rand_uniform (g05ymc) have been parallelized, but require quite large problem sizes to see any significant performance gain. Parallelism is only enabled when . The Faure generator is serial.
None.
10 Example
This example calls
nag_quasi_init (g05ylc) and nag_quasi_rand_uniform (g05ymc) to estimate the value of the integral
In this example the number of dimensions is set to .
10.1 Program Text
Program Text (g05ymce.c)
10.2 Program Data
None.
10.3 Program Results
Program Results (g05ymce.r)