Stan Math Library  2.10.0
reverse mode automatic differentiation
pareto_type_2_rng.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_PROB_PARETO_TYPE_2_RNG_HPP
2 #define STAN_MATH_PRIM_SCAL_PROB_PARETO_TYPE_2_RNG_HPP
3 
4 #include <boost/random/variate_generator.hpp>
15 
16 
17 namespace stan {
18  namespace math {
19 
20  template <class RNG>
21  inline double
22  pareto_type_2_rng(const double mu,
23  const double lambda,
24  const double alpha,
25  RNG& rng) {
26  static const char* function("stan::math::pareto_type_2_rng");
27 
28  stan::math::check_positive(function, "scale parameter", lambda);
29 
30  double uniform_01 = stan::math::uniform_rng(0.0, 1.0, rng);
31 
32 
33  return (std::pow(1.0 - uniform_01, -1.0 / alpha) - 1.0) * lambda + mu;
34  }
35  }
36 }
37 #endif
double pareto_type_2_rng(const double mu, const double lambda, const double alpha, RNG &rng)
bool check_positive(const char *function, const char *name, const T_y &y)
Return true if y is positive.
double uniform_rng(const double alpha, const double beta, RNG &rng)
Definition: uniform_rng.hpp:21
fvar< T > pow(const fvar< T > &x1, const fvar< T > &x2)
Definition: pow.hpp:18

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