nag_rngs_gen_multinomial (g05mrc) generates a sequence of
groups of
integers
, for
and
, from a multinomial distribution with
trials and
outcomes, where the probability of
for each
is
where
A single trial can have several outcomes (
, say) and the probability of achieving each outcome is known (
, say). After
trials each outcome will have occurred a certain number of times. The
numbers representing the numbers of occurrences for each outcome after
trials is then a single sample from the multinomial distribution defined by the parameters
,
and
, for
. This function returns
such samples with each sample being stored as a row in a two-dimensional array of integers.
When
this distribution is equivalent to the binomial distribution with parameters
and
(
nag_rngs_binomial (g05mjc)).
The variates can be generated with or without using a search table and index. If a search table is used then it is stored with the index in a reference vector and subsequent calls to nag_rngs_gen_multinomial (g05mrc) with the same parameter values can then use this reference vector to generate further variates. The reference array is only generated for the outcome with greatest probability. The number of successes for the outcome with greatest probability is calculated first as for the binomial distribution (
nag_rngs_binomial (g05mjc)); the number of successes for other outcomes are calculated in turn for the remaining reduced multinomial distribution; the number of successes for the final outcome is simply calculated to ensure that the total number of successes is
.
One of the initialization functions
nag_rngs_init_repeatable (g05kbc) (for a repeatable sequence if computed sequentially) or
nag_rngs_init_nonrepeatable (g05kcc) (for a non-repeatable sequence) must be called prior to the first call to nag_rngs_gen_multinomial (g05mrc).
- 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 – IntegerInput
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_rngs_gen_multinomial (g05mrc).
- Set up reference vector and generate variates.
- Generate variates without using the reference vector.
Constraint:
, , or .
- 3:
m – IntegerInput
On entry: , the number of trials of the multinomial distribution.
Constraint:
.
- 4:
k – IntegerInput
On entry:
, the number of possible outcomes of the multinomial distribution.
Constraint:
.
- 5:
p[k] – const doubleInput
On entry: contains the probabilities , for , of the possible outcomes of the multinomial distribution.
Constraint:
and .
- 6:
n – IntegerInput
-
On entry: , the number of pseudorandom numbers to be generated.
Constraint:
.
- 7:
x[] – IntegerOutput
-
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 first rows of each contain pseudorandom numbers representing a -dimensional variate from the specified multinomial distribution.
- 8:
pdx – IntegerInput
-
On entry: the stride separating row or column elements (depending on the value of
order) in the array
x.
Constraints:
- if ,
;
- if , .
- 9:
igen – IntegerInput
-
On entry: must contain the identification number for the generator to be used to return a pseudorandom number and should remain unchanged following initialization by a prior call to
nag_rngs_init_repeatable (g05kbc) or
nag_rngs_init_nonrepeatable (g05kcc).
- 10:
iseed[] – IntegerCommunication Array
-
On entry: contains values which define the current state of the selected generator.
On exit: contains updated values defining the new state of the selected generator.
- 11:
r[] – doubleCommunication Array
-
Note: the dimension,
dim, of the array
r
must be at least
- when ;
- otherwise.
On entry: if , the reference vector from the previous call to nag_rngs_gen_multinomial (g05mrc).
On exit: the reference vector.
- 12:
fail – NagError *Input/Output
-
The NAG error argument (see
Section 3.6 in the Essential Introduction).
- NE_ALLOC_FAIL
Dynamic memory allocation failed.
- NE_BAD_PARAM
On entry, argument had an illegal value.
On entry, or where: and .
- NE_INT
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: , , or .
On entry, .
Constraint: .
On entry, .
Constraint: .
- NE_INT_2
On entry, and .
Constraint: .
On entry, and .
Constraint: .
- 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_PREV_CALL
or
m is not the same as when
r was set up in a previous call. Previous value of
and
. Previous value of
and
.
On entry,
, but either
r has not been set up in prior call
or
r has become corrupted.
- NE_REAL
On entry, the sum of , for , is not unity. The difference from unity in the summation is: .
Not applicable.
Only the reference vector for one outcome can be set up because the conditional distributions cannot be known in advance of the generation of variates. The outcome with greatest probability of success is chosen for the reference vector because it will have the greatest spread of likely values.
This example prints
pseudorandom
-dimensional variates from a multinomial distribution with
,
,
,
,
and
, generated by a single call to nag_rngs_gen_multinomial (g05mrc), after initialization by
nag_rngs_init_repeatable (g05kbc).
None.