Namespaces
Variants
Views
Actions

std::uniform_real_distribution

From cppreference.com
< cpp‎ | numeric‎ | random
Revision as of 15:15, 29 October 2011 by Bregma (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Template:cpp/numeric/random/sidebar

Defined in header <random>
template< class RealType = int >
class uniform_real_distribution;
Template:mark c++11 feature

Uniform random number distribution produces random numbers distributed according to the constant probability density function p(x | a, b) = 1/(b − a) .

Member types

Template:tdcl list begin Template:tdcl list hitem Template:tdcl list item Template:tdcl list item Template:tdcl list end

Member functions

Template:cpp/numeric/random/distribution/dcl list resetTemplate:cpp/numeric/random/distribution/dcl list operator()Template:cpp/numeric/random/distribution/dcl list paramTemplate:cpp/numeric/random/distribution/dcl list minTemplate:cpp/numeric/random/distribution/dcl list max
constructs new distribution
(public member function)
returns the first parameter of the uniform_real_distribution parameter set
(public member function)
returns the second parameter of the uniform_real_distribution parameter set
(public member function)

Non-member functions

Template:cpp/numeric/random/distribution/dcl list operator compTemplate:cpp/numeric/random/distribution/dcl list operator io