Home | History | Annotate | Download | only in tr1

Lines Matching defs:distribution

79      * the input for a specific Distribution.
121 * distribution.
222 * Produces random numbers on a given distribution function using a
247 * generator @p __eng for the random distribution @p __dist.
256 * Gets the next generated value on the distribution.
287 * Gets a reference to the underlying random distribution.
290 distribution()
294 * Gets a const reference to the underlying random distribution.
297 distribution() const
301 * Gets the closed lower bound of the distribution interval.
305 { return this->distribution().min(); }
308 * Gets the closed upper bound of the distribution interval.
312 { return this->distribution().max(); }
1565 * @brief Uniform discrete distribution for random numbers.
1566 * A discrete random distribution on the range @f$[min, max]@f$ with equal
1575 /** The type of the parameters of the distribution. */
1577 /** The type of the range of the distribution. */
1582 * Constructs a uniform distribution object.
1592 * Gets the inclusive lower bound of the distribution range.
1599 * Gets the inclusive upper bound of the distribution range.
1606 distribution state.
1608 * Does nothing for the uniform integer distribution.
1643 * Inserts a %uniform_int random number distribution @p __x into the
1647 * @param __x A %uniform_int random number distribution.
1658 * Extracts a %uniform_int random number distribution
1693 * @brief A Bernoulli random number distribution.
1706 * Constructs a Bernoulli distribution with likelihood @p p.
1719 * Gets the @p p parameter of the distribution.
1726 * Resets the distribution state.
1728 * Does nothing for a Bernoulli distribution.
1746 * Inserts a %bernoulli_distribution random number distribution
1750 * @param __x A %bernoulli_distribution random number distribution.
1761 * Extracts a %bernoulli_distribution random number distribution
1781 * @brief A discrete geometric random number distribution.
1785 * distribution.
1805 * Gets the distribution parameter @p p.
1819 * Inserts a %geometric_distribution random number distribution
1823 * @param __x A %geometric_distribution random number distribution.
1835 * Extracts a %geometric_distribution random number distribution
1867 * @brief A discrete Poisson random number distribution.
1871 * parameter of the distribution.
1891 * Gets the distribution parameter @p mean.
1906 * Inserts a %poisson_distribution random number distribution
1910 * @param __x A %poisson_distribution random number distribution.
1922 * Extracts a %poisson_distribution random number distribution
1954 * @brief A discrete binomial random number distribution.
1958 * and @f$ p @f$ are the parameters of the distribution.
1979 * Gets the distribution @p t parameter.
1986 * Gets the distribution @p p parameter.
2001 * Inserts a %binomial_distribution random number distribution
2005 * @param __x A %binomial_distribution random number distribution.
2017 * Extracts a %binomial_distribution random number distribution
2062 * @brief Uniform continuous distribution for random numbers.
2064 * A continuous random distribution on the range [min, max) with equal
2080 * @param __min [IN] The lower bound of the distribution.
2081 * @param __max [IN] The upper bound of the distribution.
2108 * Inserts a %uniform_real random number distribution @p __x into the
2112 * @param __x A %uniform_real random number distribution.
2123 * Extracts a %uniform_real random number distribution
2143 * @brief An exponential continuous distribution for random numbers.
2149 * <caption align=top>Distribution Statistics</caption>
2167 * Constructs an exponential distribution with inverse scale parameter
2178 * Gets the inverse scale parameter of the distribution.
2185 * Resets the distribution.
2198 * Inserts a %exponential_distribution random number distribution
2202 * @param __x A %exponential_distribution random number distribution.
2213 * Extracts a %exponential_distribution random number distribution
2234 * @brief A normal continuous distribution for random numbers.
2250 * Constructs a normal distribution with parameters @f$ mean @f$ and
2262 * Gets the mean of the distribution.
2269 * Gets the @f$ \sigma @f$ of the distribution.
2276 * Resets the distribution.
2287 * Inserts a %normal_distribution random number distribution
2291 * @param __x A %normal_distribution random number distribution.
2302 * Extracts a %normal_distribution random number distribution
2324 * @brief A gamma continuous distribution for random numbers.
2339 * Constructs a gamma distribution with parameters @f$ \alpha @f$.
2350 * Gets the @f$ \alpha @f$ of the distribution.
2357 * Resets the distribution.
2367 * Inserts a %gamma_distribution random number distribution
2371 * @param __x A %gamma_distribution random number distribution.
2382 * Extracts a %gamma_distribution random number distribution