NAG Library Routine Document
G05RCF
1 Purpose
G05RCF sets up a reference vector and generates an array of pseudorandom numbers from a Student's copula with degrees of freedom and covariance matrix .
2 Specification
SUBROUTINE G05RCF ( |
MODE, N, DF, M, C, LDC, R, LR, STATE, X, LDX, IFAIL) |
INTEGER |
MODE, N, DF, M, LDC, LR, STATE(*), LDX, IFAIL |
REAL (KIND=nag_wp) |
C(LDC,M), R(LR), X(LDX,M) |
|
3 Description
The Student's
copula,
, is defined by
where
is the number of dimensions,
is the multivariate Student's
density function with
degrees of freedom, mean zero and covariance matrix
and
is the inverse of the univariate Student's
density function with
degrees of freedom, zero mean and variance
.
G05RYF is used to generate a vector from a multivariate Student's
distribution and
G01EBF is used to convert each element of that vector into a uniformly distributed value between zero and one.
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 G05RCF.
4 References
Nelsen R B (1998) An Introduction to Copulas. Lecture Notes in Statistics 139 Springer
Sklar A (1973) Random variables: joint distribution functions and copulas Kybernetika 9 499–460
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 G05RCF.
- 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: 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:
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 G05RCF is called.
Constraint:
.
- 7: R(LR) – REAL (KIND=nag_wp) arrayCommunication Array
On entry: if , the reference vector as set up by G05RCF in a previous call with or .
On exit: if or , the reference vector that can be used in subsequent calls to G05RCF with .
- 8: LR – INTEGERInput
On entry: the dimension of the array
R as declared in the (sub)program from which G05RCF is called. If
, it must be the same as the value of
LR specified in the prior call to G05RCF 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 values from a multivariate Student's copula, 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 G05RCF 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, .
On entry, .
The covariance matrix 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 G05RCF with
or
.
On entry, .
On entry, | STATE vector was not initialized or has been corrupted. |
On entry, .
7 Accuracy
See
Section 7 in G05RYF for an indication of the accuracy of the underlying multivariate Student's
-distribution.
The time taken by G05RCF 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 Student's
copula with ten degrees of freedom and
matrix
generated by G05RCF. All ten observations are generated by a single call to G05RCF with
. The random number generator is initialized by
G05KFF.
9.1 Program Text
Program Text (g05rcfe.f90)
9.2 Program Data
Program Data (g05rcfe.d)
9.3 Program Results
Program Results (g05rcfe.r)