Stan Math Library  2.11.0
reverse mode automatic differentiation
trace.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_FUN_TRACE_HPP
2 #define STAN_MATH_PRIM_MAT_FUN_TRACE_HPP
3 
5 
6 
7 namespace stan {
8  namespace math {
9 
19  template <typename T>
20  inline T trace(const Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic>& m) {
21  return m.trace();
22  }
23 
24  template <typename T>
25  inline T
26  trace(const T& m) {
27  return m;
28  }
29  }
30 }
31 #endif
T trace(const Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > &m)
Returns the trace of the specified matrix.
Definition: trace.hpp:20

     [ Stan Home Page ] © 2011–2016, Stan Development Team.