Click or drag to resize

DiscreteUniformSample(Int32, Int32) Method

Samples a uniformly distributed random variable.

Namespace: Altaxo.Calc.Distributions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static int Sample(
	int lower,
	int upper
)

Parameters

lower  Int32
Lower bound, inclusive. Range: lower ≤ upper.
upper  Int32
Upper bound, inclusive. Range: lower ≤ upper.

Return Value

Int32
A sample from the discrete uniform distribution.
See Also