Hypergeometric Distribution Constructor
Constructs a new HypergeometricDistribution
object with the specified parameters.
Definition
Namespace: Extreme.Statistics.Distributions
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public HypergeometricDistribution(
int taggedPopulation,
int untaggedPopulation,
int samples
)
Parameters
- taggedPopulation Int32
- The number of tagged members of the population.
- untaggedPopulation Int32
- The number of untagged members of the population.
- samples Int32
- The number of samples.
Exceptions
ArgumentOutOfRangeException | taggedPopulation is less than zero.
-or- untaggedPopulation is less than zero. -or- samples is less than zero. |