The laplace distribution is a real-valued distribution with two parameters, mean and beta. More...
#include <laplace_distribution.hpp>
Classes | |
| class | param_type |
Public Types | |
| typedef RealType | result_type |
| typedef RealType | input_type |
Public Member Functions | |
| laplace_distribution (RealType mean_arg=RealType(0.0), RealType beta_arg=RealType(1.0)) | |
Constructs an laplace_distribution from its "mean" and "beta" parameters. More... | |
| laplace_distribution (const param_type &parm) | |
Constructs an laplace_distribution from its parameters. More... | |
| template<class URNG > | |
| RealType | operator() (URNG &urng) const |
| Returns a random variate distributed according to the laplace distribution. More... | |
| template<class URNG > | |
| RealType | operator() (URNG &urng, const param_type &parm) const |
Returns a random variate distributed accordint to the laplace distribution with parameters specified by param. More... | |
| RealType | mean () const |
| Returns the "mean" parameter of the distribution. More... | |
| RealType | beta () const |
| Returns the "beta" parameter of the distribution. More... | |
| RealType min | BOOST_PREVENT_MACRO_SUBSTITUTION () const |
| Returns the smallest value that the distribution can produce. More... | |
| RealType 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 the 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... | |
| BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR (os, laplace_distribution, wd) | |
Writes an laplace_distribution to a std::ostream. More... | |
| BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR (is, laplace_distribution, wd) | |
Reads an laplace_distribution from a std::istream. More... | |
| BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR (laplace_distribution, lhs, rhs) | |
Returns true if the two instances of laplace_distribution will return identical sequences of values given equal generators. More... | |
The laplace distribution is a real-valued distribution with two parameters, mean and beta.
It has
.
| typedef RealType boost::random::laplace_distribution< RealType >::input_type |
| typedef RealType boost::random::laplace_distribution< RealType >::result_type |
|
inlineexplicit |
Constructs an laplace_distribution from its "mean" and "beta" parameters.
Referenced by boost::random::laplace_distribution< RealType >::operator()().
|
inlineexplicit |
Constructs an laplace_distribution from its parameters.
|
inline |
Returns the "beta" parameter of the distribution.
|
inline |
Returns the smallest value that the distribution can produce.
|
inline |
Returns the largest value that the distribution can produce.
|
inline |
Returns true if the two instances of laplace_distribution will return identical sequences of values given equal generators.
|
inline |
Reads an laplace_distribution from a std::istream.
|
inline |
Writes an laplace_distribution to a std::ostream.
|
inline |
Returns the "mean" parameter of the distribution.
|
inline |
Returns a random variate distributed according to the laplace distribution.
|
inline |
Returns a random variate distributed accordint to the laplace distribution with parameters specified by param.
References boost::random::laplace_distribution< RealType >::laplace_distribution().
|
inline |
Returns the parameters of the distribution.
References boost::random::laplace_distribution< RealType >::param_type::param_type().
|
inline |
Sets the parameters of the distribution.
References boost::random::laplace_distribution< RealType >::param_type::beta(), and boost::random::laplace_distribution< RealType >::param_type::mean().
|
inline |
Effects: Subsequent uses of the distribution do not depend on values produced by any engine prior to invoking reset.