Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
trace_quad_form.hpp
Go to the documentation of this file.
1 #ifndef STAN__MATH__MATRIX__TRACE_QUAD_FORM_HPP
2 #define STAN__MATH__MATRIX__TRACE_QUAD_FORM_HPP
3 
4 #include <boost/utility/enable_if.hpp>
5 #include <boost/type_traits.hpp>
9 
10 namespace stan {
11  namespace math {
15  template<int RA,int CA,int RB,int CB>
16  inline double
17  trace_quad_form(const Eigen::Matrix<double,RA,CA> &A,
18  const Eigen::Matrix<double,RB,CB> &B)
19  {
20  stan::math::check_square("trace_quad_form(%1%)",A,"A",(double*)0);
21  stan::math::check_multiplicable("trace_quad_form(%1%)",A,"A",
22  B,"B",(double*)0);
23 
24  return (B.transpose()*A*B).trace();
25  }
26 
27  }
28 }
29 
30 #endif
31 
bool check_multiplicable(const char *function, const T1 &y1, const char *name1, const T2 &y2, const char *name2, T_result *result)
double trace_quad_form(const Eigen::Matrix< double, RA, CA > &A, const Eigen::Matrix< double, RB, CB > &B)
Compute trace(B^T A B).
T trace(const Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > &m)
Returns the trace of the specified matrix.
Definition: trace.hpp:20
bool check_square(const char *function, const Eigen::Matrix< T_y, Eigen::Dynamic, Eigen::Dynamic > &y, const char *name, T_result *result)
Return true if the specified matrix is square.

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