Click or drag to resize

Hypergeometric(Int32, Int32, Int32, Random) Constructor

Initializes a new instance of the Hypergeometric class.

Namespace: Altaxo.Calc.Distributions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Hypergeometric(
	int population,
	int success,
	int draws,
	Random randomSource
)

Parameters

population  Int32
The size of the population (N).
success  Int32
The number successes within the population (K, M).
draws  Int32
The number of draws without replacement (n).
randomSource  Random
The random number generator which is used to draw random samples.
See Also