Namespace:
Imsl.Stat
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public virtual int NextBinomial( int n, double p ) |
Visual Basic (Declaration) |
---|
Public Overridable Function NextBinomial ( _ n As Integer, _ p As Double _ ) As Integer |
Visual C++ |
---|
public: virtual int NextBinomial( int n, double p ) |
Parameters
- n
- Type: System..::.Int32
A int which specifies the number of Bernoulli trials.
- p
- Type: System..::.Double
A double which specifies the probability of success on each trial,.
Return Value
A int which specifies the pseudorandom number from a Binomial distribution.
Remarks
NextBinomial generates pseudorandom numbers from a Binomial distribution with parameters n and p. n and p must be positive, and p must be less than 1. The probability function (with n = n and p = p) is

for .
The algorithm used depends on the values of n and p. If
or if p is less than a machine
epsilon, the inverse CDF technique is used; otherwise, the BTPE
algorithm of Kachitvichyanukul and Schmeiser (see Kachitvichyanukul
1982) is used. This is an acceptance/rejection method using a
composition of four regions. (TPE equals Triangle, Parallelogram,
Exponential, left and right.)