Visual Servoing Platform
version 3.0.1
|
#include <visp3/core/vpUniRand.h>
Public Member Functions | |
vpUniRand (const long seed=0) | |
virtual | ~vpUniRand () |
double | operator() () |
Protected Member Functions | |
double | draw1 () |
Protected Attributes | |
long | x |
Class for generating random numbers with uniform probability density.
The algorithms and notations used are described in [14].
The following example shows how to use this class to generate 10 numbers between 0 and 5.
Definition at line 64 of file vpUniRand.h.
|
inline |
Default constructor.
Definition at line 80 of file vpUniRand.h.
|
inlinevirtual |
Default destructor.
Definition at line 85 of file vpUniRand.h.
|
protected |
Bays-Durham Shuffling of Park-Miller generator.
Minimal random number generator of Park and Miller with Bays-Durham shuffle. Returns a uniform random deviate between 0.0 and 1.0 (exclusive of the endpoint values).
Definition at line 62 of file vpUniRand.cpp.
References x.
|
inline |
Operator that allows to get a random value.
Definition at line 88 of file vpUniRand.h.
|
protected |
Definition at line 75 of file vpUniRand.h.
Referenced by draw1().