RNGUniform Method (Single, Single) |
http://www.emgu.com
Returns uniformly distributed random float 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 float Uniform(
float a,
float b
)
Public Function Uniform (
a As Single,
b As Single
) As Single
public:
float Uniform(
float a,
float b
)
member Uniform :
a : float32 *
b : float32 -> float32
Parameters
- a
- Type: SystemSingle
Lower inclusive boundary of the returned random number. - b
- Type: SystemSingle
Upper non-inclusive boundary of the returned random number.
Return Value
Type:
SingleUniformly distributed random float number from [a,b) range
See Also