template<bool propto, typename T_y , typename T_dof , typename T_loc , typename T_scale >
return_type_t< T_y, T_dof, T_loc, T_scale > stan::math::multi_student_t_lpdf |
( |
const T_y & |
y, |
|
|
const T_dof & |
nu, |
|
|
const T_loc & |
mu, |
|
|
const T_scale & |
Sigma |
|
) |
| |
|
inline |
The log of the multivariate student t density for the given y, mu, nu, and scale matrix.
This version of the function is vectorized on y and mu.
- Parameters
-
y | scalar vector of random variates |
nu | scalar degrees of freedom |
mu | location vector |
Sigma | scale matrix |
- Returns
- The log of the multivariate student t density.
- Exceptions
-
std::domain_error | if LL' is not square, not symmetric, or not semi-positive definite. |
- Template Parameters
-
T_y | Type of scalar. |
T_dof | Type of scalar. |
T_loc | Type of location. |
T_scale | Type of scale. |
- Returns
- log probability of the multivariate student t distribution.
Definition at line 43 of file multi_student_t_lpdf.hpp.