1#ifndef STAN_MATH_PRIM_FUN_LOG_DETERMINANT_HPP
2#define STAN_MATH_PRIM_FUN_LOG_DETERMINANT_HPP
20template <
typename EigMat,
21 require_eigen_vt<std::is_arithmetic, EigMat>* =
nullptr>
27 return m.colPivHouseholderQr().logAbsDeterminant();
void check_square(const char *function, const char *name, const T_y &y)
Check if the specified matrix is square.
value_type_t< EigMat > log_determinant(const EigMat &m)
Returns the log absolute determinant of the specified square matrix.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...