Syntax
C# |
---|
public static void g05ym( int n, int rcord, double[,] quas, int[] iref, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g05ym ( _ n As Integer, _ rcord As Integer, _ quas As Double(,), _ iref As Integer(), _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g05ym( int n, int rcord, array<double,2>^ quas, array<int>^ iref, [OutAttribute] int% ifail ) |
F# |
---|
static member g05ym : n : int * rcord : int * quas : float[,] * iref : int[] * ifail : int byref -> unit |
Parameters
- n
- Type: System..::..Int32On entry: the number of quasi-random numbers required.Constraint: and .
- rcord
- Type: System..::..Int32On entry: the order in which the generated values are returned.Constraint: or .
- quas
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, ]Note: dim1 must satisfy the constraint:
- if , ;
- if , .
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.
- iref
- Type: array<System..::..Int32>[]()[][]An array of size []On entry: contains information on the current state of the sequence.On exit: contains updated information on the state of the sequence.
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
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.
g05ym 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 g05ym depends on the initialization method called and can include those proposed by Sobol, Faure or Niederreiter. If the initialization method g05yn was used then the sequence will be scrambled (see [Description] in g05yn for details).
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
Error Indicators and Warnings
Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface
(LDQUAS) In these
cases, an error in another parameter has usually caused an incorrect value to be inferred.
- On entry, either or there have been too many calls to the generator.
- On entry, or .
- On entry, and .On entry, and .
Accuracy
Not applicable.
Parallelism and Performance
None.
Further Comments
None.
Example
In this example the number of dimensions is set to .
Example program (C#): g05yme.cs