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_gumbel (g05rk)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

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

Syntax

[state, x, ifail] = g05rk(n, m, theta, sorder, state)
[state, x, ifail] = nag_rand_copula_gumbel(n, m, theta, sorder, state)

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_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_gumbel (g05rk).

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

Parameters

Compulsory Input Parameters

1:     n int64int32nag_int scalar
n, the number of pseudorandom uniform variates to generate.
Constraint: n0.
2:     m int64int32nag_int scalar
m, the number of dimensions.
Constraint: m2.
3:     theta – double scalar
θ, the copula parameter.
Constraint: theta1.0.
4:     sorder int64int32nag_int scalar
Determines the storage order of variates; the i,jth variate is stored in xij if sorder=1, and xji if sorder=2, for i=1,2,,n and j=1,2,,m.
Constraint: sorder=1 or 2.
5:     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

None.

Output Parameters

1:     state: int64int32nag_int array
Contains updated information on the state of the generator.
2:     xldxsdx – double array
The pseudorandom uniform variates with joint distribution described by Cθ, with xij holding the ith value for the jth dimension if sorder=1 and the jth value for the ith dimension of sorder=2.
3:     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
On entry, corrupt state argument.
   ifail=2
Constraint: theta1.0.
   ifail=3
Constraint: n0.
   ifail=4
Constraint: m2.
   ifail=5
On entry, invalid sorder.
Constraint: sorder=1 or 2.
   ifail=7
On entry, ldx is too small: ldx=_.
   ifail=8
On entry, sdx is too small: sdx=_.
   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

Not applicable.

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_machine_real_safe (x02am).

Example

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


fprintf('g05rk 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
n = int64(13);
m = int64(4);
% Sample order
sorder = int64(1);

% Parameter
theta = 2.4;

% Generate variates
[state, x, ifail] = g05rk( ...
                           n, m, theta, sorder, state);

disp('Variates from a Gumbel–Hougaard copula');
disp(x);


g05rk example results

Variates from a Gumbel–Hougaard copula
    0.9369    0.8676    0.9713    0.8854
    0.1139    0.3063    0.8625    0.2743
    0.4418    0.2211    0.5042    0.4985
    0.7902    0.6007    0.7493    0.6474
    0.8362    0.9847    0.8807    0.9079
    0.1781    0.4610    0.1283    0.1329
    0.1272    0.1760    0.1805    0.0383
    0.4473    0.2171    0.1662    0.1300
    0.8899    0.9005    0.8844    0.8879
    0.9069    0.8681    0.8450    0.8804
    0.2222    0.5499    0.4965    0.6488
    0.3807    0.5967    0.5096    0.3577
    0.8445    0.7755    0.8661    0.8948


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