NAG Library Routine Document
G05YKF
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
G05YKF generates a quasi-random sequence from a log-normal distribution. It must be preceded by a call to one of the initialization routines
G05YLF or
G05YNF.
2 Specification
INTEGER
N, IREF(), IFAIL
REAL (KIND=nag_wp)
XMEAN(), STD(), QUAS(N,)
3 Description
G05YKF generates a quasi-random sequence from a log-normal distribution by first generating a uniform quasi-random sequence which is then transformed into a log-normal sequence using the exponential of the inverse of the Normal CDF. The type of uniform sequence used depends on the initialization routine called and can include the low-discrepancy sequences proposed by Sobol, Faure or Niederreiter. If the initialization routine
G05YNF was used then the underlying uniform sequence is first scrambled prior to being transformed (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
Wichura (1988) Algorithm AS 241: the percentage points of the Normal distribution Appl. Statist. 37 477–484
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 routines G05YLF or G05YNF.
- 1: XMEAN() – REAL (KIND=nag_wp) arrayInput
On entry: specifies, for each dimension, the mean of the underlying Normal distribution.
Constraint:
, for .
- 2: STD() – REAL (KIND=nag_wp) arrayInput
On entry: specifies, for each dimension, the standard deviation of the underlying Normal distribution.
Constraint:
, for .
- 3: N – INTEGERInput
On entry: the number of quasi-random numbers required.
Constraint:
and .
- 4: QUAS(N,) – REAL (KIND=nag_wp) arrayOutput
On exit: contains the
N quasi-random numbers of dimension
idim.
- 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, incorrect initialization has been detected.
On entry, .
On entry,at least one element of
XMEAN is too large.
There have been too many calls to the generator.
7 Accuracy
Not applicable.
None.
9 Example
This example calls
G05YLF to initialize the generator and then G05YKF to produce a sequence of five four-dimensional quasi-random numbers variates.
9.1 Program Text
Program Text (g05ykfe.f90)
9.2 Program Data
Program Data (g05ykfe.d)
9.3 Program Results
Program Results (g05ykfe.r)