Lines Matching full:distribution

91      * the input for a specific Distribution.
136 * value in the input domain for the dependent random number distribution.
188 * generator @p __eng for the random distribution @p __dist.
197 * Gets the next generated value on the distribution.
228 * Gets a reference to the underlying random distribution.
231 distribution()
235 * Gets a const reference to the underlying random distribution.
238 distribution() const
242 * Gets the closed lower bound of the distribution interval.
246 { return this->distribution().min(); }
249 * Gets the closed upper bound of the distribution interval.
253 { return this->distribution().max(); }
1510 * @brief Uniform discrete distribution for random numbers.
1511 * A discrete random distribution on the range @f$[min, max]@f$ with equal
1520 /** The type of the parameters of the distribution. */
1522 /** The type of the range of the distribution. */
1527 * Constructs a uniform distribution object.
1537 * Gets the inclusive lower bound of the distribution range.
1544 * Gets the inclusive upper bound of the distribution range.
1551 * Resets the distribution state.
1553 * Does nothing for the uniform integer distribution.
1588 * Inserts a %uniform_int random number distribution @p __x into the
1592 * @param __x A %uniform_int random number distribution.
1603 * Extracts a %unform_int random number distribution
1639 * @brief A Bernoulli random number distribution.
1652 * Constructs a Bernoulli distribution with likelihood @p p.
1665 * Gets the @p p parameter of the distribution.
1672 * Resets the distribution state.
1674 * Does nothing for a bernoulli distribution.
1692 * Inserts a %bernoulli_distribution random number distribution
1696 * @param __x A %bernoulli_distribution random number distribution.
1707 * Extracts a %bernoulli_distribution random number distribution
1727 * @brief A discrete geometric random number distribution.
1731 * distribution.
1751 * Gets the distribution parameter @p p.
1765 * Inserts a %geometric_distribution random number distribution
1769 * @param __x A %geometric_distribution random number distribution.
1781 * Extracts a %geometric_distribution random number distribution
1813 * @brief A discrete Poisson random number distribution.
1817 * parameter of the distribution.
1837 * Gets the distribution parameter @p mean.
1852 * Inserts a %poisson_distribution random number distribution
1856 * @param __x A %poisson_distribution random number distribution.
1868 * Extracts a %poisson_distribution random number distribution
1900 * @brief A discrete binomial random number distribution.
1904 * and @f$ p @f$ are the parameters of the distribution.
1925 * Gets the distribution @p t parameter.
1932 * Gets the distribution @p p parameter.
1947 * Inserts a %binomial_distribution random number distribution
1951 * @param __x A %binomial_distribution random number distribution.
1963 * Extracts a %binomial_distribution random number distribution
2008 * @brief Uniform continuous distribution for random numbers.
2010 * A continuous random distribution on the range [min, max) with equal
2026 * @param __min [IN] The lower bound of the distribution.
2027 * @param __max [IN] The upper bound of the distribution.
2054 * Inserts a %uniform_real random number distribution @p __x into the
2058 * @param __x A %uniform_real random number distribution.
2069 * Extracts a %unform_real random number distribution
2089 * @brief An exponential continuous distribution for random numbers.
2095 * <caption align=top>Distribution Statistics</caption>
2113 * Constructs an exponential distribution with inverse scale parameter
2124 * Gets the inverse scale parameter of the distribution.
2131 * Resets the distribution.
2144 * Inserts a %exponential_distribution random number distribution
2148 * @param __x A %exponential_distribution random number distribution.
2159 * Extracts a %exponential_distribution random number distribution
2180 * @brief A normal continuous distribution for random numbers.
2196 * Constructs a normal distribution with parameters @f$ mean @f$ and
2208 * Gets the mean of the distribution.
2215 * Gets the @f$ \sigma @f$ of the distribution.
2222 * Resets the distribution.
2233 * Inserts a %normal_distribution random number distribution
2237 * @param __x A %normal_distribution random number distribution.
2248 * Extracts a %normal_distribution random number distribution
2270 * @brief A gamma continuous distribution for random numbers.
2285 * Constructs a gamma distribution with parameters @f$ \alpha @f$.
2296 * Gets the @f$ \alpha @f$ of the distribution.
2303 * Resets the distribution.
2313 * Inserts a %gamma_distribution random number distribution
2317 * @param __x A %gamma_distribution random number distribution.
2328 * Extracts a %gamma_distribution random number distribution