Click or drag to resize

HypergeometricDistribution Constructor

Initializes a new hypergeometric distribution with the given parameters.

Namespace:  Meta.Numerics.Statistics.Distributions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public HypergeometricDistribution(
	int nPopulation,
	int nSuccessPopulation,
	int nDraws
)

Parameters

nPopulation
Type: SystemInt32
The total population, which must be non-negative.
nSuccessPopulation
Type: SystemInt32
The number of successes in the total population, which must be non-negative.
nDraws
Type: SystemInt32
The number of draws from the population, which must be non-negative.
See Also