nag_rngs_neg_bin (g05mcc) generates a vector of pseudorandom integers from the discrete negative binomial distribution with parameter and probability of success at a trial.
nag_rngs_neg_bin (g05mcc) generates
integers
from a discrete negative binomial distribution, where the probability of
(
successes before
failures) is
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_neg_bin (g05mcc) with the same parameter value can then use this reference vector to generate further variates.
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_neg_bin (g05mcc).
- 1:
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_neg_bin (g05mcc).
- Set up reference vector and generate variates.
- Generate variates without using the reference vector.
Constraint:
, , or .
- 2:
m – IntegerInput
On entry: , the number of failures of the distribution.
Constraint:
.
- 3:
p – doubleInput
On entry: , the parameter of the negative binomial distribution representing the probability of success at a single trial.
Constraint:
.
- 4:
n – IntegerInput
-
On entry: , the number of pseudorandom numbers to be generated.
Constraint:
.
- 5:
x[n] – IntegerOutput
On exit: the pseudorandom numbers from the specified negative binomial distribution.
- 6:
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).
- 7:
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.
- 8:
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_neg_bin (g05mcc).
On exit: the reference vector.
- 9:
fail – NagError *Input/Output
-
The NAG error argument (see
Section 3.6 in the Essential Introduction).
Not applicable.
None.
This example prints five pseudorandom integers from a negative binomial distribution with parameters
and
, generated by a single call to nag_rngs_neg_bin (g05mcc), after initialization by
nag_rngs_init_repeatable (g05kbc).
None.