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
)
Public Sub New (
nPopulation As Integer,
nSuccessPopulation As Integer,
nDraws As Integer
)
public:
HypergeometricDistribution(
int nPopulation,
int nSuccessPopulation,
int nDraws
)
new :
nPopulation : int *
nSuccessPopulation : int *
nDraws : int -> HypergeometricDistribution
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