1 #ifndef STAN_MATH_PRIM_MAT_PROB_MULTI_STUDENT_T_RNG_HPP 2 #define STAN_MATH_PRIM_MAT_PROB_MULTI_STUDENT_T_RNG_HPP 11 #include <boost/random/normal_distribution.hpp> 12 #include <boost/random/gamma_distribution.hpp> 13 #include <boost/random/variate_generator.hpp> 36 template <
typename T_loc,
class RNG>
39 double nu,
const T_loc& mu,
40 const Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic>&
S, RNG& rng) {
41 using boost::normal_distribution;
42 using boost::random::gamma_distribution;
43 using boost::variate_generator;
45 static const char*
function =
"multi_student_t_rng";
51 Eigen::LLT<Eigen::MatrixXd> llt_of_S = S.llt();
55 size_t size_mu = mu_vec[0].size();
58 int size_mu_old = size_mu;
59 for (
size_t i = 1;
i < N;
i++) {
60 int size_mu_new = mu_vec[
i].size();
62 "Size of one of the vectors of " 63 "the location variable",
65 "Size of another vector of the " 68 size_mu_old = size_mu_new;
71 for (
size_t i = 0;
i < N;
i++) {
77 variate_generator<RNG&, normal_distribution<> > std_normal_rng(
78 rng, normal_distribution<>(0, 1));
79 variate_generator<RNG&, gamma_distribution<> >
gamma_rng(
80 rng, gamma_distribution<>(nu / 2.0, 2.0 / nu));
83 for (
size_t n = 0;
n < N; ++
n) {
84 Eigen::VectorXd
z(S.cols());
85 for (
int i = 0;
i < S.cols();
i++)
88 output[
n] = Eigen::VectorXd(mu_vec[
n]) + llt_of_S.matrixL() *
z;
void check_finite(const char *function, const char *name, const T_y &y)
void check_size_match(const char *function, const char *name_i, T_size1 i, const char *name_j, T_size2 j)
void check_not_nan(const char *function, const char *name, const T_y &y)
void check_symmetric(const char *function, const char *name, const Eigen::Matrix< T_y, Eigen::Dynamic, Eigen::Dynamic > &y)
void check_pos_definite(const char *function, const char *name, const Eigen::Matrix< T_y,-1,-1 > &y)
VectorBuilder< true, double, T_shape, T_inv >::type gamma_rng(const T_shape &alpha, const T_inv &beta, RNG &rng)
void check_positive(const char *function, const char *name, const T_y &y)
StdVectorBuilder< true, Eigen::VectorXd, T_loc >::type multi_student_t_rng(double nu, const T_loc &mu, const Eigen::Matrix< double, Eigen::Dynamic, Eigen::Dynamic > &S, RNG &rng)
size_t length_mvt(const Eigen::Matrix< T, R, C > &)