NAG Library Routine Document
G05RZF
1 Purpose
G05RZF sets up a reference vector and generates an array of pseudorandom numbers from a multivariate Normal distribution with mean vector and covariance matrix .
2 Specification
SUBROUTINE G05RZF ( |
MODE, N, M, XMU, C, LDC, R, LR, STATE, X, LDX, IFAIL) |
INTEGER |
MODE, N, M, LDC, LR, STATE(*), LDX, IFAIL |
REAL (KIND=nag_wp) |
XMU(M), C(LDC,M), R(LR), X(LDX,M) |
|
3 Description
When the covariance matrix is nonsingular (i.e., strictly positive definite), the distribution has probability density function
where
is the number of dimensions,
is the covariance matrix,
is the vector of means and
is the vector of positions.
Covariance matrices are symmetric and positive semidefinite. Given such a matrix , there exists a lower triangular matrix such that . is not unique, if is singular.
G05RZF decomposes to find such an . It then stores , and in the reference vector which is used to generate a vector of independent standard Normal pseudorandom numbers. It then returns the vector , which has the required multivariate Normal distribution.
It should be noted that this routine will work with a singular covariance matrix
, provided
is positive semidefinite, despite the fact that the above formula for the probability density function is not valid in that case.
Wilkinson (1965) should be consulted if further information is required.
One of the initialization routines
G05KFF (for a repeatable sequence if computed sequentially) or
G05KGF (for a non-repeatable sequence) must be called prior to the first call to G05RZF.
4 References
Knuth D E (1981) The Art of Computer Programming (Volume 2) (2nd Edition) Addison–Wesley
Wilkinson J H (1965) The Algebraic Eigenvalue Problem Oxford University Press, Oxford
5 Parameters
- 1: MODE – INTEGERInput
On entry: a code for selecting the operation to be performed by the routine.
- Set up reference vector only.
- Generate variates using reference vector set up in a prior call to G05RZF.
- Set up reference vector and generate variates.
Constraint:
, or .
- 2: N – INTEGERInput
On entry: , the number of random variates required.
Constraint:
.
- 3: M – INTEGERInput
On entry: , the number of dimensions of the distribution.
Constraint:
.
- 4: XMU(M) – REAL (KIND=nag_wp) arrayInput
On entry: , the vector of means of the distribution.
- 5: C(LDC,M) – REAL (KIND=nag_wp) arrayInput
On entry: the covariance matrix of the distribution. Only the upper triangle need be set.
Constraint:
must be positive semidefinite to machine precision.
- 6: LDC – INTEGERInput
On entry: the first dimension of the array
C as declared in the (sub)program from which G05RZF is called.
Constraint:
.
- 7: R(LR) – REAL (KIND=nag_wp) arrayInput/Output
On entry: if , the reference vector as set up by G05RZF in a previous call with or .
On exit: if or , the reference vector that can be used in subsequent calls to G05RZF with .
- 8: LR – INTEGERInput
On entry: the dimension of the array
R as declared in the (sub)program from which G05RZF is called. If
, it must be the same as the value of
LR specified in the prior call to G05RZF with
or
.
Constraint:
.
- 9: STATE() – INTEGER arrayCommunication Array
-
Note: the actual argument supplied must be the array
STATE supplied to the initialization routines
G05KFF or
G05KGF.
On entry: contains information on the selected base generator and its current state.
On exit: contains updated information on the state of the generator.
- 10: X(LDX,M) – REAL (KIND=nag_wp) arrayOutput
On exit: the array of pseudorandom multivariate Normal vectors generated by the routine, with holding the th dimension for the th variate.
- 11: LDX – INTEGERInput
On entry: the first dimension of the array
X as declared in the (sub)program from which G05RZF is called.
Constraint:
.
- 12: 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, , or .
On entry, .
On entry, .
The covariance matrix
C is not positive semidefinite to
machine precision.
On entry, .
The reference vector
R has been corrupted or
M has changed since
R was set up in a previous call to G05RZF with
or
.
On entry, .
On entry, | STATE vector was not initialized or has been corrupted. |
On entry, .
7 Accuracy
Not applicable.
The time taken by G05RZF is of order .
It is recommended that the diagonal elements of should not differ too widely in order of magnitude. This may be achieved by scaling the variables if necessary. The actual matrix decomposed is , where is a diagonal matrix with small positive diagonal elements. This ensures that, even when is singular, or nearly singular, the Cholesky factor corresponds to a positive definite covariance matrix that agrees with within machine precision.
9 Example
This example prints ten pseudorandom observations from a multivariate Normal distribution with means vector
and covariance matrix
generated by G05RZF. All ten observations are generated by a single call to G05RZF with
. The random number generator is initialized by
G05KFF.
9.1 Program Text
Program Text (g05rzfe.f90)
9.2 Program Data
Program Data (g05rzfe.d)
9.3 Program Results
Program Results (g05rzfe.r)