void RandomHypergeometric(TMtxVecInt Dst, Int32 m, Int32 k, Int32 n)
Generates an array of integer samples distributed Hypergeometrically.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | m | Int32 | |
| 3 | k | Int32 | |
| 4 | n | Int32 |
Result: stored in self (calling object)
Remarks:
Hypergeometric probability density function (PDF). Returns random numbers distributed according to the Hypergeometric probability density function (PDF) as defined here Dew.Math.Units.Probabilities.HypGeometricPDF. The number of samples generated is defined with the Dst.Length parameter. The result is an array of integers which can be accessed via Dst.IValues property. Dst is automatically resized to store 32bit integers, if needed.