Stan Math Library  2.11.0
reverse mode automatic differentiation
exponential_rng.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_PROB_EXPONENTIAL_RNG_HPP
2 #define STAN_MATH_PRIM_SCAL_PROB_EXPONENTIAL_RNG_HPP
3 
15 #include <boost/random/exponential_distribution.hpp>
16 #include <boost/random/variate_generator.hpp>
17 
18 namespace stan {
19 
20  namespace math {
21 
22  template <class RNG>
23  inline double
24  exponential_rng(const double beta,
25  RNG& rng) {
26  using boost::variate_generator;
27  using boost::exponential_distribution;
28 
29  static const char* function("stan::math::exponential_rng");
30 
32 
33  check_positive_finite(function, "Inverse scale parameter", beta);
34 
35  variate_generator<RNG&, exponential_distribution<> >
36  exp_rng(rng, exponential_distribution<>(beta));
37  return exp_rng();
38  }
39  }
40 }
41 
42 #endif
double exponential_rng(const double beta, RNG &rng)
bool check_positive_finite(const char *function, const char *name, const T_y &y)
Return true if y is positive and finite.

     [ Stan Home Page ] © 2011–2016, Stan Development Team.