Stan Math Library  2.6.3
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros
lognormal_rng.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_PROB_LOGNORMAL_RNG_HPP
2 #define STAN_MATH_PRIM_SCAL_PROB_LOGNORMAL_RNG_HPP
3 
4 #include <boost/random/lognormal_distribution.hpp>
5 #include <boost/random/variate_generator.hpp>
16 
17 namespace stan {
18  namespace math {
19 
20  template <class RNG>
21  inline double
22  lognormal_rng(const double mu,
23  const double sigma,
24  RNG& rng) {
25  using boost::variate_generator;
26  using boost::random::lognormal_distribution;
27 
28  static const char* function("stan::math::lognormal_rng");
29 
32 
33  check_finite(function, "Location parameter", mu);
34  check_positive_finite(function, "Scale parameter", sigma);
35 
36  variate_generator<RNG&, lognormal_distribution<> >
37  lognorm_rng(rng, lognormal_distribution<>(mu, sigma));
38  return lognorm_rng();
39  }
40  }
41 }
42 #endif
double lognormal_rng(const double mu, const double sigma, RNG &rng)
bool check_finite(const char *function, const char *name, const T_y &y)
Return true if y is finite.
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–2015, Stan Development Team.