1#ifndef STAN_MATH_PRIM_PROB_MULTINOMIAL_LOGIT_RNG_HPP
2#define STAN_MATH_PRIM_PROB_MULTINOMIAL_LOGIT_RNG_HPP
27template <
class RNG,
typename T_beta,
28 require_eigen_col_vector_t<T_beta>* =
nullptr>
31 static constexpr const char* function =
"multinomial_logit_rng";
33 check_finite(function,
"Log-probabilities parameter", beta_ref);
37 std::vector<int> result(theta.size(), 0);
38 double mass_left = 1.0;
41 for (
int k = 0; n_left > 0 && k < theta.size(); ++k) {
42 double p = theta.coeff(k) / mass_left;
48 mass_left -= theta.coeff(k);
std::vector< int > multinomial_logit_rng(const T_beta &beta, int N, RNG &rng)
Return a draw from a Multinomial distribution given a vector of unnormalized log probabilities,...
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.
auto softmax(const ColVec &alpha)
ref_type_t< T && > to_ref(T &&a)
This evaluates expensive Eigen expressions.
void check_finite(const char *function, const char *name, const T_y &y)
Return true if all values in y are finite.
fvar< T > beta(const fvar< T > &x1, const fvar< T > &x2)
Return fvar with the beta function applied to the specified arguments and its gradient.
typename plain_type< T >::type plain_type_t
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...