nag_rand_copula_gumbel (g05rkc) (PDF version)
g05 Chapter Contents
g05 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_rand_copula_gumbel (g05rkc)

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_rand_copula_gumbel (g05rkc) generates pseudorandom uniform variates with joint distribution of a Gumbel–Hougaard Archimedean copula.

2  Specification

#include <nag.h>
#include <nagg05.h>
void  nag_rand_copula_gumbel (Nag_OrderType order, Integer state[], double theta, Integer n, Integer m, double x[], Integer pdx, Integer sdx, NagError *fail)

3  Description

Generates n pseudorandom uniform m-variates whose joint distribution is the Gumbel–Hougaard Archimedean copula Cθ, given by
Cθ = exp - -lnu1 θ + -lnu2 θ + + -lnum θ ,   θ 1, , uj 0,1 ,   j = 1 , 2 , m ;
with the special cases:
The generation method uses mixture of powers.
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_gumbel (g05rkc).

4  References

Marshall A W and Olkin I (1988) Families of multivariate distributions Journal of the American Statistical Association 83 403
Nelsen R B (2006) An Introduction to Copulas (2nd Edition) Springer Series in Statistics

5  Arguments

1:     orderNag_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:     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.
3:     thetadoubleInput
On entry: θ, the copula parameter.
Constraint: theta1.0.
4:     nIntegerInput
On entry: n, the number of pseudorandom uniform variates to generate.
Constraint: n0.
5:     mIntegerInput
On entry: m, the number of dimensions.
Constraint: m2.
6:     x[pdx×sdx]doubleOutput
Note: 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 pseudorandom uniform variates with joint distribution described by Cθ, with Xi,j holding the ith value for the jth dimension if order=Nag_ColMajor and the jth value for the ith dimension of order=Nag_RowMajor.
7:     pdxIntegerInput
On entry: the stride separating row or column elements (depending on the value of order) in the array x.
Constraints:
  • if order=Nag_ColMajor, pdxn;
  • if order=Nag_RowMajor, pdxm.
8:     sdxIntegerInput
On entry: the secondary dimension of X.
Constraints:
  • if order=Nag_ColMajor, sdxm;
  • if order=Nag_RowMajor, sdxn.
9:     failNagError *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.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INT
On entry, m=value.
Constraint: m>1.
On entry, n=value.
Constraint: n0.
NE_INT_2
On entry, pdx must be at least value: pdx=value.
On entry, sdx must be at least value: sdx=value.
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.
NE_INVALID_STATE
On entry, corrupt state argument.
NE_REAL
On entry, invalid theta: theta=value.
Constraint: theta1.0.

7  Accuracy

Not applicable.

8  Parallelism and Performance

nag_rand_copula_gumbel (g05rkc) is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the Users' Note for your implementation for any additional implementation-specific information.

9  Further Comments

In practice, the need for numerical stability restricts the range of θ such that: where εs is the safe-range parameter, the value of which is returned by nag_real_safe_small_number (X02AMC).

10  Example

This example generates thirteen four-dimensional variates for copula C2.4.

10.1  Program Text

Program Text (g05rkce.c)

10.2  Program Data

None.

10.3  Program Results

Program Results (g05rkce.r)


nag_rand_copula_gumbel (g05rkc) (PDF version)
g05 Chapter Contents
g05 Chapter Introduction
NAG Library Manual

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