1#ifndef STAN_MATH_PRIM_PROB_MULTINOMIAL_RNG_HPP
2#define STAN_MATH_PRIM_PROB_MULTINOMIAL_RNG_HPP
26template <
class T_theta,
class RNG,
27 require_eigen_col_vector_t<T_theta>* =
nullptr>
29 static constexpr const char* function =
"multinomial_rng";
30 const auto& theta_ref =
to_ref(theta);
31 check_simplex(function,
"Probabilities parameter", theta_ref);
34 std::vector<int> result(theta.size(), 0);
35 double mass_left = 1.0;
37 for (
int k = 0; n_left > 0 && k < theta.size(); ++k) {
38 double p = theta_ref.coeff(k) / mass_left;
44 mass_left -= theta_ref(k);
std::vector< int > multinomial_rng(const T_theta &theta, int N, RNG &rng)
Return a draw from a Multinomial distribution given a probability simplex, a total count,...
VectorBuilder< true, int, T_N, T_theta >::type binomial_rng(const T_N &N, const T_theta &theta, RNG &rng)
Return a pseudorandom binomial random variable for the given population size and chance of success pa...
void check_nonnegative(const char *function, const char *name, const T_y &y)
Check if y is non-negative.
void check_simplex(const char *function, const char *name, const T &theta)
Throw an exception if the specified vector is not a simplex.
ref_type_t< T && > to_ref(T &&a)
This evaluates expensive Eigen expressions.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...