Class IntRandomBinomialDistribution generates random numbers from a discrete binomial distribution.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public class IntRandomBinomialDistribution : IRandomNumberDistribution<int>, 
	ICloneable
Visual Basic (Declaration)
Public Class IntRandomBinomialDistribution _
	Implements IRandomNumberDistribution(Of Integer), ICloneable
Visual C++
public ref class IntRandomBinomialDistribution : IRandomNumberDistribution<int>, 
	ICloneable

Remarks

The binomial distribution is the discrete probability distribution of the number of successes in a sequence of n independent yes/no experiments, each of which yields success with probability p.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Core..::.IntRandomBinomialDistribution

See Also