Stan Math Library  2.11.0
reverse mode automatic differentiation
student_t_rng.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_PROB_STUDENT_T_RNG_HPP
2 #define STAN_MATH_PRIM_SCAL_PROB_STUDENT_T_RNG_HPP
3 
4 #include <boost/random/student_t_distribution.hpp>
5 #include <boost/random/variate_generator.hpp>
21 
22 namespace stan {
23 
24  namespace math {
25 
26  template <class RNG>
27  inline double
28  student_t_rng(const double nu,
29  const double mu,
30  const double sigma,
31  RNG& rng) {
32  using boost::variate_generator;
33  using boost::random::student_t_distribution;
34 
35  static const char* function("stan::math::student_t_rng");
36 
39 
40  check_positive_finite(function, "Degrees of freedom parameter", nu);
41  check_finite(function, "Location parameter", mu);
42  check_positive_finite(function, "Scale parameter", sigma);
43 
44  variate_generator<RNG&, student_t_distribution<> >
45  rng_unit_student_t(rng, student_t_distribution<>(nu));
46  return mu + sigma * rng_unit_student_t();
47  }
48  }
49 }
50 #endif
double student_t_rng(const double nu, 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–2016, Stan Development Team.