1 #ifndef STAN_MATH_PRIM_SCAL_PROB_BETA_RNG_HPP 2 #define STAN_MATH_PRIM_SCAL_PROB_BETA_RNG_HPP 4 #include <boost/random/gamma_distribution.hpp> 5 #include <boost/random/uniform_real_distribution.hpp> 6 #include <boost/random/variate_generator.hpp> 35 template <
typename T_shape1,
typename T_shape2,
class RNG>
37 const T_shape1 &alpha,
const T_shape2 &
beta, RNG &rng) {
38 using boost::random::gamma_distribution;
39 using boost::random::uniform_real_distribution;
40 using boost::variate_generator;
41 static const char *
function =
"beta_rng";
46 "Second shape Parameter", beta);
53 variate_generator<RNG &, uniform_real_distribution<>>
uniform_rng(
54 rng, uniform_real_distribution<>(0.0, 1.0));
55 for (
size_t n = 0;
n < N; ++
n) {
59 if (alpha_vec[
n] > 1.0 && beta_vec[
n] > 1.0) {
60 variate_generator<RNG &, gamma_distribution<>> rng_gamma_alpha(
61 rng, gamma_distribution<>(alpha_vec[
n], 1.0));
62 variate_generator<RNG &, gamma_distribution<>> rng_gamma_beta(
63 rng, gamma_distribution<>(beta_vec[n], 1.0));
64 double a = rng_gamma_alpha();
65 double b = rng_gamma_beta();
66 output[
n] = a / (a +
b);
68 variate_generator<RNG &, gamma_distribution<>> rng_gamma_alpha(
69 rng, gamma_distribution<>(alpha_vec[
n] + 1, 1.0));
70 variate_generator<RNG &, gamma_distribution<>> rng_gamma_beta(
71 rng, gamma_distribution<>(beta_vec[
n] + 1, 1.0));
VectorBuilder< true, double, T_shape1, T_shape2 >::type beta_rng(const T_shape1 &alpha, const T_shape2 &beta, RNG &rng)
fvar< T > log_sum_exp(const std::vector< fvar< T > > &v)
VectorBuilder< true, double, T_alpha, T_beta >::type uniform_rng(const T_alpha &alpha, const T_beta &beta, RNG &rng)
void check_positive_finite(const char *function, const char *name, const T_y &y)
fvar< T > exp(const fvar< T > &x)
size_t max_size(const T1 &x1, const T2 &x2)
void check_consistent_sizes(const char *function, const char *name1, const T1 &x1, const char *name2, const T2 &x2)