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 .
The routine may be called by the names g05rcf or nagf_rand_copula_students_t.
3Description
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.
4References
Nelsen R B (1998) An Introduction to Copulas. Lecture Notes in Statistics 139 Springer
Sklar A (1973) Random variables: joint distribution functions and copulas Kybernetika9 499–460
5Arguments
1: – 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: – IntegerInput
On entry: , the number of random variates required.
Constraint:
.
3: – IntegerInput
On entry: , the number of degrees of freedom of the distribution.
Constraint:
.
4: – IntegerInput
On entry: , the number of dimensions of the distribution.
Constraint:
.
5: – 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: – IntegerInput
On entry: the first dimension of the array c as declared in the (sub)program from which g05rcf is called.
Constraint:
.
7: – 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: – 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: – 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: – Real (Kind=nag_wp) arrayOutput
Note: the second dimension of the array x
must be at least
.
On exit: the array of values from a multivariate Student's copula, with holding the th dimension for the th variate.
11: – IntegerInput
On entry: the first dimension of the array x as declared in the (sub)program from which g05rcf is called.
Constraint:
.
12: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or 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).
6Error 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, .
Constraint: , or .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, the covariance matrix is not positive semidefinite to machine precision.
On entry, and .
Constraint: .
m is not the same as when r was set up in a previous call.
Previous value of and .
On entry, lr is not large enough, : minimum length required .
On entry, state vector has been corrupted or not initialized.
On entry, and .
Constraint: .
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
See Section 7 in g05ryf for an indication of the accuracy of the underlying multivariate Student's -distribution.
8Parallelism and Performance
g05rcf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g05rcf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.
9Further Comments
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.
10Example
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.