1 #ifndef STAN_MATH_PRIM_MAT_FUN_QUAD_FORM_HPP
2 #define STAN_MATH_PRIM_MAT_FUN_QUAD_FORM_HPP
4 #include <boost/utility/enable_if.hpp>
5 #include <boost/type_traits.hpp>
19 template<
int RA,
int CA,
int RB,
int CB,
typename T>
20 inline Eigen::Matrix<T, CB, CB>
22 const Eigen::Matrix<T, RB, CB>& B) {
31 template<
int RA,
int CA,
int RB,
typename T>
34 const Eigen::Matrix<T, RB, 1>& B) {
Eigen::Matrix< fvar< T >, R1, C1 > multiply(const Eigen::Matrix< fvar< T >, R1, C1 > &m, const fvar< T > &c)
bool check_multiplicable(const char *function, const char *name1, const T1 &y1, const char *name2, const T2 &y2)
Return true if the matrices can be multiplied.
fvar< T > dot_product(const Eigen::Matrix< fvar< T >, R1, C1 > &v1, const Eigen::Matrix< fvar< T >, R2, C2 > &v2)
Eigen::Matrix< T, C, R > transpose(const Eigen::Matrix< T, R, C > &m)
bool check_square(const char *function, const char *name, const Eigen::Matrix< T_y, Eigen::Dynamic, Eigen::Dynamic > &y)
Return true if the specified matrix is square.
Eigen::Matrix< T, CB, CB > quad_form(const Eigen::Matrix< T, RA, CA > &A, const Eigen::Matrix< T, RB, CB > &B)
Compute B^T A B.