RandomNumberGeneratorDiscreteUniform(Int32, Int32) Method
Draws a sample point from a discrete Uniform distribution defined on the interval
having the specified bounds.
Namespace: Novacta.AnalyticsAssembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
public int DiscreteUniform(
int lowerBound,
int upperBound
)
Public Function DiscreteUniform (
lowerBound As Integer,
upperBound As Integer
) As Integer
public:
int DiscreteUniform(
int lowerBound,
int upperBound
)
member DiscreteUniform :
lowerBound : int *
upperBound : int -> int
- lowerBound Int32
- The interval lower bound, inclusive.
- upperBound Int32
- The interval upper bound, exclusive.
Int32
A sample point drawn from the specified
discrete Uniform distribution.