GNU g++  v5.2.1
GNU Standard C++
Collaboration diagram for Normal Distributions:

Modules

 Poisson Distributions
 

Detailed Description

Uniform discrete distribution for random numbers. A discrete random distribution on the range $[min, max]$ with equal probability throughout the range.

The type of the range of the distribution.

Parameter type.

Constructs a uniform distribution object.

Resets the distribution state.

Does nothing for the uniform integer distribution.

Returns the parameter set of the distribution.

Sets the parameter set of the distribution.

Parameters
__paramThe new parameter set of the distribution.

Returns the inclusive lower bound of the distribution range.

Returns the inclusive upper bound of the distribution range.

Generating functions.

Return true if two uniform integer distributions have the same parameters.

Return true if two uniform integer distributions have different parameters.

Inserts a uniform_int_distribution random number distribution __x into the output stream os.

Parameters
__osAn output stream.
__xA uniform_int_distribution random number distribution.
Returns
The output stream with the state of __x inserted or in an error state.

Extracts a uniform_int_distribution random number distribution __x from the input stream __is.

Parameters
__isAn input stream.
__xA uniform_int_distribution random number generator engine.
Returns
The input stream with __x extracted or in an error state.

Uniform continuous distribution for random numbers.

A continuous random distribution on the range [min, max) with equal probability throughout the range. The URNG should be real-valued and deliver number in the range [0, 1).

The type of the range of the distribution.

Parameter type.

Constructs a uniform_real_distribution object.

Parameters
__a[IN] The lower bound of the distribution.
__b[IN] The upper bound of the distribution.

Resets the distribution state.

Does nothing for the uniform real distribution.

Returns the parameter set of the distribution.

Sets the parameter set of the distribution.

Parameters
__paramThe new parameter set of the distribution.

Returns the inclusive lower bound of the distribution range.

Returns the inclusive upper bound of the distribution range.

Generating functions.

Return true if two uniform real distributions have the same parameters.

Return true if two uniform real distributions have different parameters.

Inserts a uniform_real_distribution random number distribution __x into the output stream __os.

Parameters
__osAn output stream.
__xA uniform_real_distribution random number distribution.
Returns
The output stream with the state of __x inserted or in an error state.

Extracts a uniform_real_distribution random number distribution __x from the input stream __is.

Parameters
__isAn input stream.
__xA uniform_real_distribution random number generator engine.
Returns
The input stream with __x extracted or in an error state.