Mvlgamma
torch_mvlgamma(self, p)
self
: (Tensor) the tensor to compute the multivariate log-gamma functionp
: (int) the number of dimensionsComputes the multivariate log-gamma function<https://en.wikipedia.org/wiki/Multivariate_gamma_function>
_) with dimension element-wise, given by
where and is the Gamma function.
All elements must be greater than , otherwise an error would be thrown.
if (torch_is_installed()) { a = torch_empty(c(2, 3))$uniform_(1, 2) a torch_mvlgamma(a, 2) }
Useful links