hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_rand_copula_students_t (g05rc)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_rand_copula_students_t (g05rc) sets up a reference vector and generates an array of pseudorandom numbers from a Student's t copula with ν degrees of freedom and covariance matrix ν ν-2 C .

Syntax

[r, state, x, ifail] = g05rc(mode, n, df, c, r, state, 'm', m, 'lr', lr)
[r, state, x, ifail] = nag_rand_copula_students_t(mode, n, df, c, r, state, 'm', m, 'lr', lr)

Description

The Student's t copula, G, is defined by
G u1 , u2 ,, um ; C = T ν,C m t ν,C11 -1 u1 , t ν,C22 -1 u2 ,, t ν,Cmm -1 um  
where m is the number of dimensions, T ν,C m  is the multivariate Student's t density function with ν degrees of freedom, mean zero and covariance matrix ν ν-2 C  and t ν,Cii -1  is the inverse of the univariate Student's t density function with ν degrees of freedom, zero mean and variance ν ν-2 Cii .
nag_rand_multivar_students_t (g05ry) is used to generate a vector from a multivariate Student's t distribution and nag_stat_prob_students_t (g01eb) is used to convert each element of that vector into a uniformly distributed value between zero and one.
One of the initialization functions nag_rand_init_repeat (g05kf) (for a repeatable sequence if computed sequentially) or nag_rand_init_nonrepeat (g05kg) (for a non-repeatable sequence) must be called prior to the first call to nag_rand_copula_students_t (g05rc).

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

Parameters

Compulsory Input Parameters

1:     mode int64int32nag_int scalar
A code for selecting the operation to be performed by the function.
mode=0
Set up reference vector only.
mode=1
Generate variates using reference vector set up in a prior call to nag_rand_copula_students_t (g05rc).
mode=2
Set up reference vector and generate variates.
Constraint: mode=0, 1 or 2.
2:     n int64int32nag_int scalar
n, the number of random variates required.
Constraint: n0.
3:     df int64int32nag_int scalar
ν, the number of degrees of freedom of the distribution.
Constraint: df3 .
4:     cldcm – double array
ldc, the first dimension of the array, must satisfy the constraint ldcm.
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.
5:     rlr – double array
If mode=1, the reference vector as set up by nag_rand_copula_students_t (g05rc) in a previous call with mode=0 or 2.
6:     state: int64int32nag_int array
Note: the actual argument supplied must be the array state supplied to the initialization routines nag_rand_init_repeat (g05kf) or nag_rand_init_nonrepeat (g05kg).
Contains information on the selected base generator and its current state.

Optional Input Parameters

1:     m int64int32nag_int scalar
Default: the first dimension of the array c and the second dimension of the array c. (An error is raised if these dimensions are not equal.)
m, the number of dimensions of the distribution.
Constraint: m>0.
2:     lr int64int32nag_int scalar
Default: the dimension of the array r.
The dimension of the array r. if mode=1, it must be the same as the value of lr specified in the prior call to nag_rand_copula_students_t (g05rc) with mode=0 or 2.
Constraint: lrm×m+1+2.

Output Parameters

1:     rlr – double array
If mode=0 or 2, the reference vector that can be used in subsequent calls to nag_rand_copula_students_t (g05rc) with mode=1.
2:     state: int64int32nag_int array
Contains updated information on the state of the generator.
3:     xldxm – double array
The array of values from a multivariate Student's t copula, with xij holding the jth dimension for the ith variate.
4:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Errors or warnings detected by the function:
   ifail=1
Constraint: mode=0, 1 or 2.
   ifail=2
Constraint: n0.
   ifail=3
Constraint: df3.
   ifail=4
Constraint: m > 0.
   ifail=5
On entry, the covariance matrix C is not positive semidefinite to machine precision.
   ifail=6
Constraint: ldcm.
   ifail=7
m is not the same as when r was set up in a previous call.
   ifail=8
On entry, lr is not large enough, lr=_: minimum length required .
   ifail=9
On entry, state vector has been corrupted or not initialized.
   ifail=11
Constraint: ldxn.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

See Accuracy in nag_rand_multivar_students_t (g05ry) for an indication of the accuracy of the underlying multivariate Student's t-distribution.

Further Comments

The time taken by nag_rand_copula_students_t (g05rc) is of order nm3.
It is recommended that the diagonal elements of C should not differ too widely in order of magnitude. This may be achieved by scaling the variables if necessary. The actual matrix decomposed is C+E=LLT, where E is a diagonal matrix with small positive diagonal elements. This ensures that, even when C is singular, or nearly singular, the Cholesky factor L corresponds to a positive definite covariance matrix that agrees with C within machine precision.

Example

This example prints ten pseudorandom observations from a Student's t copula with ten degrees of freedom and C matrix
1.69 0.39 -1.86 0.07 0.39 98.01 -7.07 -0.71 -1.86 -7.07 11.56 0.03 0.07 -0.71 0.03 0.01 ,  
generated by nag_rand_copula_students_t (g05rc). All ten observations are generated by a single call to nag_rand_copula_students_t (g05rc) with mode=2. The random number generator is initialized by nag_rand_init_repeat (g05kf).
function g05rc_example


fprintf('g05rc example results\n\n');

% Initialize the base generator to a repeatable sequence
seed  = [int64(1762543)];
genid = int64(1);
subid = int64(1);
[state, ifail] = g05kf( ...
                        genid, subid, seed);


% Sample size and degrees of freedom
n  = int64(10);
df = int64(10);

% Upper triangular part of covariance matrix
c = [ 1.69,  0.39, -1.86,  0.07;
      0,    98.01, -7.07, -0.71;
      0,     0,    11.56,  0.03;
      0,     0,     0,     0.01];
m = size(c,1);

% Setup and generate in one go
mode = int64(2);

% Generate variates from Student t copula
lr = m*(m+1) + 2;
r = zeros(lr, 1);
[r, state, x, ifail] = g05rc( ...
                              mode, n, df, c, r, state);

disp('Variates');
disp(x);


g05rc example results

Variates
    0.6445    0.0527    0.4082    0.8876
    0.0701    0.1988    0.8471    0.3521
    0.7988    0.6664    0.2194    0.5541
    0.8202    0.0492    0.7059    0.9341
    0.1786    0.5594    0.7810    0.2836
    0.4920    0.2677    0.3427    0.5169
    0.4139    0.2978    0.8762    0.7145
    0.7437    0.9714    0.8931    0.2487
    0.4971    0.9687    0.8142    0.1965
    0.6464    0.5304    0.5817    0.4565


PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015