RNGUniform Method (Double, Double) |
http://www.emgu.com
Returns uniformly distributed random double number from [a,b) range
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic double Uniform(
double a,
double b
)
Public Function Uniform (
a As Double,
b As Double
) As Double
public:
double Uniform(
double a,
double b
)
member Uniform :
a : float *
b : float -> float
Parameters
- a
- Type: SystemDouble
Lower inclusive boundary of the returned random number. - b
- Type: SystemDouble
Upper non-inclusive boundary of the returned random number.
Return Value
Type:
DoubleUniformly distributed random double number from [a,b) range
See Also