The binomial distribution is an integer valued distribution with two parameters, t
and p
.
More...
#include <binomial_distribution.hpp>
Classes | |
class | param_type |
Public Types | |
typedef IntType | result_type |
typedef RealType | input_type |
Public Member Functions | |
binomial_distribution (IntType t_arg=1, RealType p_arg=RealType(0.5)) | |
Construct a binomial_distribution object. More... | |
binomial_distribution (const param_type &parm) | |
Construct an binomial_distribution object from the parameters. More... | |
template<class URNG > | |
IntType | operator() (URNG &urng) const |
Returns a random variate distributed according to the binomial distribution. More... | |
template<class URNG > | |
IntType | operator() (URNG &urng, const param_type &parm) const |
Returns a random variate distributed according to the binomial distribution with parameters specified by param . More... | |
IntType | t () const |
Returns the t parameter of the distribution. More... | |
RealType | p () const |
Returns the p parameter of the distribution. More... | |
IntType min | BOOST_PREVENT_MACRO_SUBSTITUTION () const |
Returns the smallest value that the distribution can produce. More... | |
IntType max | BOOST_PREVENT_MACRO_SUBSTITUTION () const |
Returns the largest value that the distribution can produce. More... | |
param_type | param () const |
Returns the parameters of the distribution. More... | |
void | param (const param_type &parm) |
Sets parameters of the distribution. More... | |
void | reset () |
Effects: Subsequent uses of the distribution do not depend on values produced by any engine prior to invoking reset. More... | |
Friends | |
template<class CharT , class Traits > | |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const binomial_distribution &bd) |
Writes the parameters of the distribution to a std::ostream . More... | |
template<class CharT , class Traits > | |
std::basic_istream< CharT, Traits > & | operator>> (std::basic_istream< CharT, Traits > &is, binomial_distribution &bd) |
Reads the parameters of the distribution from a std::istream . More... | |
bool | operator== (const binomial_distribution &lhs, const binomial_distribution &rhs) |
Returns true if the two distributions will produce the same sequence of values, given equal generators. More... | |
bool | operator!= (const binomial_distribution &lhs, const binomial_distribution &rhs) |
Returns true if the two distributions could produce different sequences of values, given equal generators. More... | |
The binomial distribution is an integer valued distribution with two parameters, t
and p
.
The values of the distribution are within the range [0,t].
The distribution function is .
The algorithm used is the BTRD algorithm described in
"The generation of binomial random variates", Wolfgang Hormann, Journal of Statistical Computation and Simulation, Volume 46, Issue 1 & 2 April 1993 , pages 101 - 110
typedef RealType boost::random::binomial_distribution< IntType, RealType >::input_type |
typedef IntType boost::random::binomial_distribution< IntType, RealType >::result_type |
|
inlineexplicit |
Construct a binomial_distribution
object.
t
and p
are the parameters of the distribution.
Requires: t >=0 && 0 <= p <= 1
References boost::unit_test::framework::init().
Referenced by boost::random::binomial_distribution< IntType, RealType >::operator()().
|
inlineexplicit |
Construct an binomial_distribution
object from the parameters.
References boost::unit_test::framework::init().
|
inline |
Returns the smallest value that the distribution can produce.
|
inline |
Returns the largest value that the distribution can produce.
References boost::phoenix::local_names::_t.
|
inline |
Returns a random variate distributed according to the binomial distribution.
References boost::phoenix::local_names::_p, boost::phoenix::local_names::_t, boost::range::generate(), and boost::iostreams::grep::invert.
|
inline |
Returns a random variate distributed according to the binomial distribution with parameters specified by param
.
References boost::random::binomial_distribution< IntType, RealType >::binomial_distribution().
|
inline |
Returns the p
parameter of the distribution.
References boost::phoenix::local_names::_p.
|
inline |
Returns the parameters of the distribution.
References boost::phoenix::local_names::_p, and boost::phoenix::local_names::_t.
|
inline |
Sets parameters of the distribution.
References boost::phoenix::local_names::_p, boost::phoenix::local_names::_t, boost::unit_test::framework::init(), boost::random::binomial_distribution< IntType, RealType >::param_type::p(), and boost::random::binomial_distribution< IntType, RealType >::param_type::t().
|
inline |
Effects: Subsequent uses of the distribution do not depend on values produced by any engine prior to invoking reset.
|
inline |
Returns the t
parameter of the distribution.
References boost::phoenix::local_names::_t.
|
friend |
Returns true if the two distributions could produce different sequences of values, given equal generators.
|
friend |
Writes the parameters of the distribution to a std::ostream
.
|
friend |
Returns true if the two distributions will produce the same sequence of values, given equal generators.
|
friend |
Reads the parameters of the distribution from a std::istream
.