Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Class template exponential_distribution

boost::exponential_distribution

Synopsis

// In header: <boost/random/exponential_distribution.hpp>

template<typename RealType = double> 
class exponential_distribution {
public:
  // types
  typedef RealType input_type; 
  typedef RealType result_type;

  // construct/copy/destruct
  exponential_distribution(result_type = result_type(1));

  // public member functions
  result_type lambda() const;
  void reset();
  template<typename Engine> result_type operator()(Engine &);
};

Description

The exponential distribution has a single parameter lambda.

It has

exponential_distribution public construct/copy/destruct

  1. exponential_distribution(result_type lambda_arg = result_type(1));

exponential_distribution public member functions

  1. result_type lambda() const;
  2. void reset();
  3. template<typename Engine> result_type operator()(Engine & eng);

PrevUpHomeNext