25.2 Inverse Wishart Distribution
25.2.1 Probability Density Function
If K∈N, ν∈(K−1,∞), and S∈RK×K is symmetric and positive definite, then for symmetric and positive-definite W∈RK×K, InvWishart(W|ν,S)=12νK/2 1ΓK(ν2) |S|ν/2 |W|−(ν+K+1)/2 exp(−12 tr(SW−1)).
25.2.2 Sampling Statement
W ~
inv_wishart
(nu, Sigma)
Increment target log probability density with inv_wishart_lpdf(W | nu, Sigma)
dropping constant additive terms.
25.2.3 Stan Functions
real
inv_wishart_lpdf
(matrix W | real nu, matrix Sigma)
The log of the inverse Wishart density for symmetric and
positive-definite matrix W given degrees of freedom nu and symmetric
and positive-definite scale matrix Sigma
matrix
inv_wishart_rng
(real nu, matrix Sigma)
Generate an inverse Wishart variate with degrees of freedom nu and
symmetric and positive-definite scale matrix Sigma; may only be used
in transformed data and generated quantities blocks