|
HypergeometricDistribution Constructor
|
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public HypergeometricDistribution(
[PositiveIntegerAttribute(1, 2147483647)] int populationSize,
[NonnegativeIntegerAttribute(0, 2147483647)] int successes,
[PositiveIntegerAttribute(1, 2147483647)] int samples
)
Public Sub New (
<PositiveIntegerAttribute(1, 2147483647)> populationSize As Integer,
<NonnegativeIntegerAttribute(0, 2147483647)> successes As Integer,
<PositiveIntegerAttribute(1, 2147483647)> samples As Integer
)
Request Example
View SourceParameters
- populationSize
- Type: SystemInt32
Size N of the population. - successes
- Type: SystemInt32
The number m of successes in the population. - samples
- Type: SystemInt32
The number n of samples drawn from the population.
See Also