thrust::random::uniform_real_distribution
Defined in thrust/random/uniform_real_distribution.h
- 
template<typename RealType = double>
 class uniform_real_distribution
- A - uniform_real_distributionrandom number distribution produces floating point uniform random numbers from a half-open interval.- The following code snippet demonstrates examples of using a - uniform_real_distributionwith a random number engine to produce random integers drawn from a given range:- #include <thrust/random/linear_congruential_engine.h> #include <thrust/random/uniform_real_distribution.h> int main() { // create a minstd_rand object to act as our source of randomness thrust::minstd_rand rng; // create a uniform_real_distribution to produce floats from [-7,13) thrust::uniform_real_distribution<float> dist(-7,13); // write a random number from the range [-7,13) to standard output std::cout << dist(rng) << std::endl; // write the range of the distribution, just in case we forgot std::cout << dist.min() << std::endl; // -7.0 is printed std::cout << dist.max() << std::endl; // 13.0 is printed // write the parameters of the distribution (which happen to be the bounds) to standard output std::cout << dist.a() << std::endl; // -7.0 is printed std::cout << dist.b() << std::endl; // 13.0 is printed return 0; } - Template Parameters
- RealType – The type of floating point number to produce. 
 - Public Types - 
typedef RealType result_type
- The type of the floating point number produced by this - uniform_real_distribution.
 - Public Functions - 
explicit uniform_real_distribution(RealType a = 0.0, RealType b = 1.0)
- This constructor creates a new - uniform_real_distributionfrom two values defining the half-open interval of the distribution.- Parameters
- a – The smallest floating point number to potentially produce. Defaults to - 0.0.
- b – The smallest number larger than the largest floating point number to potentially produce. Defaults to - 1.0.
 
 
 - 
explicit uniform_real_distribution(const param_type &parm)
- This constructor creates a new - uniform_real_distributionfrom a- param_typeobject encapsulating the range of the distribution.- Parameters
- parm – A - param_typeobject encapsulating the parameters (i.e., the range) of the distribution.
 
 - 
void reset()
- This does nothing. It is included to conform to the requirements of the RandomDistribution concept. 
 - 
template<typename UniformRandomNumberGenerator>
 result_type operator()(UniformRandomNumberGenerator &urng)
- This method produces a new uniform random integer drawn from this - uniform_real_distribution'srange using a- UniformRandomNumberGeneratoras a source of randomness.- Parameters
- urng – The - UniformRandomNumberGeneratorto use as a source of randomness.
 
 - 
template<typename UniformRandomNumberGenerator>
 result_type operator()(UniformRandomNumberGenerator &urng, const param_type &parm)
- This method produces a new uniform random integer as if by creating a new - uniform_real_distributionfrom the given- param_typeobject, and calling its- operator()method with the given- UniformRandomNumberGeneratoras a source of randomness.- Parameters
- urng – The - UniformRandomNumberGeneratorto use as a source of randomness.
- parm – A - param_typeobject encapsulating the parameters of the- uniform_real_distributionto draw from.
 
 
 - 
result_type a() const
- This method returns the value of the parameter with which this - uniform_real_distributionwas constructed.- Returns
- The lower bound of this - uniform_real_distribution'shalf-open interval.
 
 - 
result_type b() const
- This method returns the value of the parameter with which this - uniform_real_distributionwas constructed.- Returns
- The upper bound of this - uniform_real_distribution'shalf-open interval.
 
 - 
param_type param() const
- This method returns a - param_typeobject encapsulating the parameters with which this- uniform_real_distributionwas constructed.- Returns
- A - param_typeobject enapsulating the half-open interval of this- uniform_real_distribution.
 
 - 
void param(const param_type &parm)
- This method changes the parameters of this - uniform_real_distributionusing the values encapsulated in a given- param_typeobject.- Parameters
- parm – A - param_typeobject encapsulating the new half-open interval of this- uniform_real_distribution.
 
 - 
result_type min() const
- This method returns the smallest floating point number this - uniform_real_distributioncan potentially produce.- Returns
- The lower bound of this - uniform_real_distribution'shalf-open interval.
 
 - 
result_type max() const
- This method returns the smallest number larger than largest floating point number this - uniform_real_distributioncan potentially produce.- Returns
- The upper bound of this - uniform_real_distribution'shalf-open interval.