HypergeometricDistribution Constructor
Initializes a new hypergeometric distribution with the given parameters.
Namespace: Meta.Numerics.Statistics.DistributionsAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
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 Int32
- The total population, which must be non-negative.
- nSuccessPopulation Int32
- The number of successes in the total population, which must be non-negative.
- nDraws Int32
- The number of draws from the population, which must be non-negative.