NAG FL Interface
g05taf (int_​binomial)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g05taf generates a vector of pseudorandom integers from the discrete binomial distribution with parameters m and p.

2 Specification

Fortran Interface
Subroutine g05taf ( mode, n, m, p, r, lr, state, x, ifail)
Integer, Intent (In) :: mode, n, m, lr
Integer, Intent (Inout) :: state(*), ifail
Integer, Intent (Out) :: x(n)
Real (Kind=nag_wp), Intent (In) :: p
Real (Kind=nag_wp), Intent (Inout) :: r(lr)
C Header Interface
#include <nag.h>
void  g05taf_ (const Integer *mode, const Integer *n, const Integer *m, const double *p, double r[], const Integer *lr, Integer state[], Integer x[], Integer *ifail)
The routine may be called by the names g05taf or nagf_rand_int_binomial.

3 Description

g05taf generates n integers xi from a discrete binomial distribution, where the probability of xi=I is
P(xi=I)= m! I!(m-I)! pI×(1-p)m-I,  I=0,1,,m,  
where m0 and 0p1. This represents the probability of achieving I successes in m trials when the probability of success at a single trial is p.
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 g05taf with the same parameter values can then use this reference vector to generate further variates.
One of the initialization routines g05kff (for a repeatable sequence if computed sequentially) or g05kgf (for a non-repeatable sequence) must be called prior to the first call to g05taf.

4 References

Kendall M G and Stuart A (1969) The Advanced Theory of Statistics (Volume 1) (3rd Edition) Griffin
Knuth D E (1981) The Art of Computer Programming (Volume 2) (2nd Edition) Addison–Wesley

5 Arguments

1: mode Integer Input
On entry: a code for selecting the operation to be performed by the routine.
mode=0
Set up reference vector only.
mode=1
Generate variates using reference vector set up in a prior call to g05taf.
mode=2
Set up reference vector and generate variates.
mode=3
Generate variates without using the reference vector.
Constraint: mode=0, 1, 2 or 3.
2: n Integer Input
On entry: n, the number of pseudorandom numbers to be generated.
Constraint: n0.
3: m Integer Input
On entry: m, the number of trials of the distribution.
Constraint: m0.
4: p Real (Kind=nag_wp) Input
On entry: p, the probability of success of the binomial distribution.
Constraint: 0.0p1.0.
5: r(lr) Real (Kind=nag_wp) array Communication Array
On entry: if mode=1, the reference vector from the previous call to g05taf.
If mode=3, r is not referenced.
On exit: if mode3, the reference vector.
6: lr Integer Input
On entry: the dimension of the array r as declared in the (sub)program from which g05taf is called.
Suggested values:
  • if mode3, lr=22+20×m×p×(1-p);
  • otherwise lr=1.
Constraints:
  • if mode=0 or 2,
    lr > min(m,int[m×p+7.15× m × p × (1-p) +1]) - max(0,int[m×p-7.15× m × p × (1-p) -7.15]) +8 ;
  • if mode=1, lr must remain unchanged from the previous call to g05taf.
7: state(*) Integer array Communication Array
Note: the actual argument supplied must be the array state supplied to the initialization routines g05kff or g05kgf.
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) Integer array Output
On exit: the n pseudorandom numbers from the specified binomial distribution.
9: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, mode=value.
Constraint: mode=0, 1, 2 or 3.
ifail=2
On entry, n=value.
Constraint: n0.
ifail=3
On entry, m=value.
Constraint: m0.
ifail=4
On entry, p=value.
Constraint: 0.0p1.0.
ifail=5
On entry, some of the elements of the array r have been corrupted or have not been initialized.
p or m is not the same as when r was set up in a previous call.
Previous value of p=value and p=value.
Previous value of m=value and m=value.
ifail=6
On entry, lr is too small when mode=0 or 2: lr=value, minimum length required =value.
ifail=7
On entry, state vector has been corrupted or not initialized.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

Not applicable.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
g05taf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

None.

10 Example

This example prints 20 pseudorandom integers from a binomial distribution with parameters m=6000 and p=0.8, generated by a single call to g05taf, after initialization by g05kff.

10.1 Program Text

Program Text (g05tafe.f90)

10.2 Program Data

Program Data (g05tafe.d)

10.3 Program Results

Program Results (g05tafe.r)