|
GeneralDiscreteDistributionRandom Method (Double, Int32, Random)
|
Returns a random sample within the given symbol probabilities.
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public static int[] Random(
double[] probabilities,
int samples,
Random source
)
Public Shared Function Random (
probabilities As Double(),
samples As Integer,
source As Random
) As Integer()
Request Example
View SourceParameters
- probabilities
- Type: SystemDouble
The probabilities for the discrete symbols. - samples
- Type: SystemInt32
The number of samples to generate. - source
- Type: SystemRandom
The random number generator to use as a source of randomness.
Default is to use Random.
Return Value
Type:
Int32A random sample within the given probabilities.
See Also