nag_rand_copula_students_t (g05rcc) (PDF version)
g05 Chapter Contents
g05 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_rand_copula_students_t (g05rcc)

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_rand_copula_students_t (g05rcc) 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 .

2  Specification

#include <nag.h>
#include <nagg05.h>
void  nag_rand_copula_students_t (Nag_OrderType order, Nag_ModeRNG mode, Integer n, Integer df, Integer m, const double c[], Integer pdc, double r[], Integer lr, Integer state[], double x[], Integer pdx, NagError *fail)

3  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_matrix_multi_students_t (g05ryc) is used to generate a vector from a multivariate Student's t distribution and nag_prob_students_t (g01ebc) 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_repeatable (g05kfc) (for a repeatable sequence if computed sequentially) or nag_rand_init_nonrepeatable (g05kgc) (for a non-repeatable sequence) must be called prior to the first call to nag_rand_copula_students_t (g05rcc).

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  Arguments

1:     order Nag_OrderTypeInput
On entry: the order argument specifies the two-dimensional storage scheme being used, i.e., row-major ordering or column-major ordering. C language defined storage is specified by order=Nag_RowMajor. See Section 3.2.1.3 in the Essential Introduction for a more detailed explanation of the use of this argument.
Constraint: order=Nag_RowMajor or Nag_ColMajor.
2:     mode Nag_ModeRNGInput
On entry: a code for selecting the operation to be performed by the function.
mode=Nag_InitializeReference
Set up reference vector only.
mode=Nag_GenerateFromReference
Generate variates using reference vector set up in a prior call to nag_rand_copula_students_t (g05rcc).
mode=Nag_InitializeAndGenerate
Set up reference vector and generate variates.
Constraint: mode=Nag_InitializeReference, Nag_GenerateFromReference or Nag_InitializeAndGenerate.
3:     n IntegerInput
On entry: n, the number of random variates required.
Constraint: n0.
4:     df IntegerInput
On entry: ν, the number of degrees of freedom of the distribution.
Constraint: df3 .
5:     m IntegerInput
On entry: m, the number of dimensions of the distribution.
Constraint: m>0.
6:     c[dim] const doubleInput
Note: the dimension, dim, of the array c must be at least pdc×m.
The i,jth element of the matrix C is stored in
  • c[j-1×pdc+i-1] when order=Nag_ColMajor;
  • c[i-1×pdc+j-1] when order=Nag_RowMajor.
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:     pdc IntegerInput
On entry: the stride separating row or column elements (depending on the value of order) in the array c.
Constraint: pdcm.
8:     r[lr] doubleCommunication Array
On entry: if mode=Nag_GenerateFromReference, the reference vector as set up by nag_rand_copula_students_t (g05rcc) in a previous call with mode=Nag_InitializeReference or Nag_InitializeAndGenerate.
On exit: if mode=Nag_InitializeReference or Nag_InitializeAndGenerate, the reference vector that can be used in subsequent calls to nag_rand_copula_students_t (g05rcc) with mode=Nag_GenerateFromReference.
9:     lr IntegerInput
On entry: the dimension of the array r. If mode=Nag_GenerateFromReference, it must be the same as the value of lr specified in the prior call to nag_rand_copula_students_t (g05rcc) with mode=Nag_InitializeReference or Nag_InitializeAndGenerate.
Constraint: lrm×m+1+2.
10:   state[dim] IntegerCommunication Array
Note: the dimension, dim, of this array is dictated by the requirements of associated functions that must have been previously called. This array MUST be the same array passed as argument state in the previous call to nag_rand_init_repeatable (g05kfc) or nag_rand_init_nonrepeatable (g05kgc).
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[dim] doubleOutput
Note: the dimension, dim, of the array x must be at least
  • max1,pdx×m when order=Nag_ColMajor;
  • max1,n×pdx when order=Nag_RowMajor.
Where Xi,j appears in this document, it refers to the array element
  • x[j-1×pdx+i-1] when order=Nag_ColMajor;
  • x[i-1×pdx+j-1] when order=Nag_RowMajor.
On exit: the array of values from a multivariate Student's t copula, with Xi,j holding the jth dimension for the ith variate.
12:   pdx IntegerInput
On entry: the stride used in the array x.
Constraints:
  • if order=Nag_ColMajor, pdxn;
  • if order=Nag_RowMajor, pdxm.
13:   fail NagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.2.1.2 in the Essential Introduction for further information.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INT
On entry, df=value.
Constraint: df3.
On entry, lr is not large enough, lr=value: minimum length required =value.
On entry, m=value.
Constraint: m > 0.
On entry, n=value.
Constraint: n0.
NE_INT_2
On entry, pdc=value and m=value.
Constraint: pdcm.
On entry, pdx=value and m=value.
Constraint: pdxm.
On entry, pdx=value and n=value.
Constraint: pdxn.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
An unexpected error has been triggered by this function. Please contact NAG.
See Section 3.6.6 in the Essential Introduction for further information.
NE_INVALID_STATE
On entry, state vector has been corrupted or not initialized.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 3.6.5 in the Essential Introduction for further information.
NE_POS_DEF
On entry, the covariance matrix C is not positive semidefinite to machine precision.
NE_PREV_CALL
m is not the same as when r was set up in a previous call.
Previous value of m=value and m=value.

7  Accuracy

See Section 7 in nag_rand_matrix_multi_students_t (g05ryc) for an indication of the accuracy of the underlying multivariate Student's t-distribution.

8  Parallelism and Performance

nag_rand_copula_students_t (g05rcc) is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
nag_rand_copula_students_t (g05rcc) 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 function. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9  Further Comments

The time taken by nag_rand_copula_students_t (g05rcc) 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.

10  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 (g05rcc). All ten observations are generated by a single call to nag_rand_copula_students_t (g05rcc) with mode=Nag_InitializeAndGenerate. The random number generator is initialized by nag_rand_init_repeatable (g05kfc).

10.1  Program Text

Program Text (g05rcce.c)

10.2  Program Data

None.

10.3  Program Results

Program Results (g05rcce.r)


nag_rand_copula_students_t (g05rcc) (PDF version)
g05 Chapter Contents
g05 Chapter Introduction
NAG Library Manual

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