nag_rand_neg_bin (g05thc) generates a vector of pseudorandom integers from the discrete negative binomial distribution with parameter and probability of success at a trial.
nag_rand_neg_bin (g05thc) 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_rand_neg_bin (g05thc) with the same parameter value can then use this reference vector to generate further variates.
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_neg_bin (g05thc).
- 1:
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_neg_bin (g05thc).
- Set up reference vector and generate variates.
- Generate variates without using the reference vector.
Constraint:
, , or .
- 2:
n – IntegerInput
-
On entry: , the number of pseudorandom numbers to be generated.
Constraint:
.
- 3:
m – IntegerInput
On entry: , the number of failures of the distribution.
Constraint:
.
- 4:
p – doubleInput
On entry: , the parameter of the negative binomial distribution representing the probability of success at a single trial.
Constraint:
.
- 5:
r[lr] – doubleCommunication Array
On entry: if
, the reference vector from the previous call to nag_rand_neg_bin (g05thc).
If
,
r is not referenced by nag_rand_neg_bin (g05thc).
On exit: the reference vector.
- 6:
lr – IntegerInput
On entry: the dimension of the array
r.
Suggested values:
- if ,
;
- otherwise .
Constraints:
- if or ,
;
- if , lr must remain unchanged from the previous call to nag_rand_neg_bin (g05thc).
- 7:
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.
- 8:
x[n] – IntegerOutput
On exit: the pseudorandom numbers from the specified negative binomial distribution.
- 9:
fail – NagError *Input/Output
-
The NAG error argument (see
Section 3.6 in the Essential Introduction).
Not applicable.
None.
This example prints
pseudorandom integers from a negative binomial distribution with parameters
and
, generated by a single call to nag_rand_neg_bin (g05thc), after initialization by
nag_rand_init_repeatable (g05kfc).
None.