NAG Library Routine Document
G05RYF
1 Purpose
G05RYF sets up a reference vector and generates an array of pseudorandom numbers from a multivariate Student's distribution with degrees of freedom, mean vector and covariance matrix .
2 Specification
SUBROUTINE G05RYF ( |
MODE, N, DF, M, XMU, C, LDC, R, LR, STATE, X, LDX, IFAIL) |
INTEGER |
MODE, N, DF, 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 degrees of freedom,
is the vector of means,
is the vector of positions and
is the covariance matrix.
The routine returns the value
where
is generated by
G05SKF from a Normal distribution with mean zero and covariance matrix
and
is generated by
G05SDF from a
-distribution with
degrees of freedom.
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 G05RYF.
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 G05RYF.
- Set up reference vector and generate variates.
Constraint:
, or .
- 2: N – INTEGERInput
On entry: , the number of random variates required.
Constraint:
.
- 3: DF – INTEGERInput
On entry: , the number of degrees of freedom of the distribution.
Constraint:
.
- 4: M – INTEGERInput
On entry: , the number of dimensions of the distribution.
Constraint:
.
- 5: XMU(M) – REAL (KIND=nag_wp) arrayInput
On entry: , the vector of means of the distribution.
- 6: C(LDC,M) – REAL (KIND=nag_wp) arrayInput
On entry: matrix which, along with
DF, defines the covariance of the distribution. Only the upper triangle need be set.
Constraint:
C must be positive semidefinite to
machine precision.
- 7: LDC – INTEGERInput
On entry: the first dimension of the array
C as declared in the (sub)program from which G05RYF is called.
Constraint:
.
- 8: R(LR) – REAL (KIND=nag_wp) arrayInput/Output
On entry: if , the reference vector as set up by G05RYF in a previous call with or .
On exit: if or , the reference vector that can be used in subsequent calls to G05RYF with .
- 9: LR – INTEGERInput
On entry: the dimension of the array
R as declared in the (sub)program from which G05RYF is called. If
, it must be the same as the value of
LR specified in the prior call to G05RYF with
or
.
Constraint:
.
- 10: 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.
- 11: X(LDX,M) – REAL (KIND=nag_wp) arrayOutput
On exit: the array of pseudorandom multivariate Student's vectors generated by the routine, with holding the th dimension for the th variate.
- 12: LDX – INTEGERInput
On entry: the first dimension of the array
X as declared in the (sub)program from which G05RYF is called.
Constraint:
.
- 13: 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, .
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 G05RYF 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 G05RYF 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 Student's
-distribution with ten degrees of freedom, means vector
and
C matrix
generated by G05RYF. All ten observations are generated by a single call to G05RYF with
. The random number generator is initialized by
G05KFF.
9.1 Program Text
Program Text (g05ryfe.f90)
9.2 Program Data
Program Data (g05ryfe.d)
9.3 Program Results
Program Results (g05ryfe.r)