RandomNumberGeneratorDiscreteUniform(Int32, Int32) Method

Draws a sample point from a discrete Uniform distribution defined on the interval having the specified bounds.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public int DiscreteUniform(
	int lowerBound,
	int upperBound
)

Parameters

lowerBound  Int32
The interval lower bound, inclusive.
upperBound  Int32
The interval upper bound, exclusive.

Return Value

Int32
A sample point drawn from the specified discrete Uniform distribution.

Exceptions

ArgumentExceptionupperBound is not greater than lowerBound.

See Also