Automatic Differentiation
 
Loading...
Searching...
No Matches
determinant.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_PRIM_FUN_DETERMINANT_HPP
2#define STAN_MATH_PRIM_FUN_DETERMINANT_HPP
3
7
8namespace stan {
9namespace math {
10
20template <typename T, require_eigen_vt<std::is_arithmetic, T>* = nullptr>
21inline value_type_t<T> determinant(const T& m) {
22 check_square("determinant", "m", m);
23 return m.determinant();
24}
25
26} // namespace math
27} // namespace stan
28
29#endif
typename value_type< T >::type value_type_t
Helper function for accessing underlying type.
void check_square(const char *function, const char *name, const T_y &y)
Check if the specified matrix is square.
value_type_t< EigMat > determinant(const EigMat &m)
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Definition fvar.hpp:9