Modules | |
Poisson Distributions | |
Uniform discrete distribution for random numbers. A discrete random distribution on the range 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.
__param | The 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
.
__os | An output stream. |
__x | A uniform_int_distribution random number distribution. |
__x
inserted or in an error state.Extracts a uniform_int_distribution random number distribution __x
from the input stream __is
.
__is | An input stream. |
__x | A uniform_int_distribution random number generator engine. |
__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.
__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.
__param | The 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
.
__os | An output stream. |
__x | A uniform_real_distribution random number distribution. |
__x
inserted or in an error state.Extracts a uniform_real_distribution random number distribution __x
from the input stream __is
.
__is | An input stream. |
__x | A uniform_real_distribution random number generator engine. |
__x
extracted or in an error state.