nag_rand_copula_normal (g05rdc) sets up a reference vector and generates an array of pseudorandom numbers from a Normal (Gaussian) copula with covariance matrix .
The Gaussian copula,
, is defined by
where
is the number of dimensions,
is the multivariate Normal density function with mean zero and covariance matrix
and
is the inverse of the univariate Normal density function with mean zero and variance
.
nag_rand_matrix_multi_normal (g05rzc) is used to generate a vector from a multivariate Normal distribution and
nag_prob_normal (g01eac) 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_normal (g05rdc).
- 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
. See
Section 3.2.1.3 in the Essential Introduction for a more detailed explanation of the use of this argument.
Constraint:
or Nag_ColMajor.
- 2:
mode – Nag_ModeRNGInput
On entry: a code for selecting the operation to be performed by the function.
- Set up reference vector only.
- Generate variates using reference vector set up in a prior call to nag_rand_copula_normal (g05rdc).
- Set up reference vector and generate variates.
Constraint:
, or .
- 3:
n – IntegerInput
On entry:
, the number of random variates required.
Constraint:
.
- 4:
m – IntegerInput
On entry:
, the number of dimensions of the distribution.
Constraint:
.
- 5:
c[] – const doubleInput
-
Note: the dimension,
dim, of the array
c
must be at least
.
The
th element of the matrix
is stored in
- when ;
- when .
On entry: the covariance matrix of the distribution. Only the upper triangle need be set.
Constraint:
must be positive semidefinite to machine precision.
- 6:
pdc – IntegerInput
-
On entry: the stride separating row or column elements (depending on the value of
order) in the array
c.
Constraint:
.
- 7:
r[lr] – doubleCommunication Array
On entry: if , the reference vector as set up by nag_rand_copula_normal (g05rdc) in a previous call with or .
On exit: if or , the reference vector that can be used in subsequent calls to nag_rand_copula_normal (g05rdc) with .
- 8:
lr – IntegerInput
On entry: the dimension of the array
r. If
, it must be the same as the value of
lr specified in the prior call to nag_rand_copula_normal (g05rdc) with
or
.
Constraint:
.
- 9:
state[] – IntegerCommunication Array
-
Note: the actual argument supplied must be the array
state supplied to the initialization functions
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.
- 10:
x[] – doubleOutput
-
Note: the dimension,
dim, of the array
x
must be at least
- when ;
- when .
Where
appears in this document, it refers to the array element
- when ;
- when .
On exit: the array of values from a multivariate Gaussian copula, with holding the th dimension for the th variate.
- 11:
pdx – IntegerInput
-
On entry: the stride used in the array
x.
Constraints:
- if ,
;
- if , .
- 12:
fail – NagError *Input/Output
-
The NAG error argument (see
Section 3.6 in the Essential Introduction).
See
Section 7 in nag_rand_matrix_multi_normal (g05rzc) for an indication of the accuracy of the underlying multivariate Normal distribution.
This example prints ten pseudorandom observations from a Normal copula with covariance matrix
generated by nag_rand_copula_normal (g05rdc). All ten observations are generated by a single call to nag_rand_copula_normal (g05rdc) with
. The random number generator is initialized by
nag_rand_init_repeatable (g05kfc).
None.