1 #ifndef STAN_MATH_PRIM_MAT_PROB_MULTI_STUDENT_T_LOG_HPP 2 #define STAN_MATH_PRIM_MAT_PROB_MULTI_STUDENT_T_LOG_HPP 18 template <
bool propto,
typename T_y,
typename T_dof,
typename T_loc,
21 const T_y& y,
const T_dof& nu,
const T_loc& mu,
const T_scale& Sigma) {
22 return multi_student_t_lpdf<propto, T_y, T_dof, T_loc, T_scale>(y, nu, mu,
29 template <
typename T_y,
typename T_dof,
typename T_loc,
typename T_scale>
32 const T_scale& Sigma) {
33 return multi_student_t_lpdf<T_y, T_dof, T_loc, T_scale>(y, nu, mu, Sigma);
boost::math::tools::promote_args< double, typename scalar_type< T >::type, typename return_type< Types_pack... >::type >::type type
return_type< T_y, T_dof, T_loc, T_scale >::type multi_student_t_log(const T_y &y, const T_dof &nu, const T_loc &mu, const T_scale &Sigma)
Return the log of the multivariate Student t distribution at the specified arguments.