1 #ifndef STAN__MATH__MATRIX__TRACE_GEN_QUAD_FORM_HPP
2 #define STAN__MATH__MATRIX__TRACE_GEN_QUAD_FORM_HPP
4 #include <boost/utility/enable_if.hpp>
5 #include <boost/type_traits.hpp>
15 template<
int RD,
int CD,
int RA,
int CA,
int RB,
int CB>
18 const Eigen::Matrix<double,RA,CA> &A,
19 const Eigen::Matrix<double,RB,CB> &B)
27 return (D*B.transpose()*A*B).
trace();
bool check_multiplicable(const char *function, const T1 &y1, const char *name1, const T2 &y2, const char *name2, T_result *result)
T trace(const Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > &m)
Returns the trace of the specified matrix.
double trace_gen_quad_form(const Eigen::Matrix< double, RD, CD > &D, const Eigen::Matrix< double, RA, CA > &A, const Eigen::Matrix< double, RB, CB > &B)
Compute trace(D B^T A B).
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.