HypergeometricDistribution Constructor

Initializes a new hypergeometric distribution with the given parameters.

Definition

Namespace: Meta.Numerics.Statistics.Distributions
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public HypergeometricDistribution(
	int nPopulation,
	int nSuccessPopulation,
	int nDraws
)

Parameters

nPopulation  Int32
The total population, which must be non-negative.
nSuccessPopulation  Int32
The number of successes in the total population, which must be non-negative.
nDraws  Int32
The number of draws from the population, which must be non-negative.

See Also