RandomNumberGeneratorUniform(Double, Double) Method

Draws a sample point from a 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 double Uniform(
	double lowerBound,
	double upperBound
)

Parameters

lowerBound  Double
The interval lower bound.
upperBound  Double
The interval upper bound.

Return Value

Double
A sample point drawn from the specified Uniform distribution.

Exceptions

ArgumentExceptionupperBound is not greater than lowerBound.

See Also