Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
trace_gen_quad_form.hpp
Go to the documentation of this file.
1 #ifndef STAN__AGRAD__FWD__MATRIX__TRACE_GEN_QUAD_FORM_HPP
2 #define STAN__AGRAD__FWD__MATRIX__TRACE_GEN_QUAD_FORM_HPP
3 
10 
11 namespace stan {
12  namespace agrad {
13  template<int RD,int CD,int RA,int CA,int RB,int CB,typename T>
14  inline fvar<T>
15  trace_gen_quad_form(const Eigen::Matrix<fvar<T>,RD,CD> &D,
16  const Eigen::Matrix<fvar<T>,RA,CA> &A,
17  const Eigen::Matrix<fvar<T>,RB,CB> &B)
18  {
21 
22  stan::math::check_square("trace_gen_quad_form(%1%)",A,"A",(double*)0);
23  stan::math::check_square("trace_gen_quad_form(%1%)",D,"D",(double*)0);
24  stan::math::check_multiplicable("trace_gen_quad_form(%1%)",A,"A",
25  B,"B",(double*)0);
26  stan::math::check_multiplicable("trace_gen_quad_form(%1%)",B,"B",
27  D,"D",(double*)0);
29  multiply(A,B)));
30  }
31  }
32 }
33 
34 #endif
35 
fvar< T > trace_gen_quad_form(const Eigen::Matrix< fvar< T >, RD, CD > &D, const Eigen::Matrix< fvar< T >, RA, CA > &A, const Eigen::Matrix< fvar< T >, RB, CB > &B)
Eigen::Matrix< fvar< T >, R1, C1 > multiply(const Eigen::Matrix< fvar< T >, R1, C1 > &m, const fvar< T > &c)
Definition: multiply.hpp:21
bool check_multiplicable(const char *function, const T1 &y1, const char *name1, const T2 &y2, const char *name2, T_result *result)
Eigen::Matrix< T, C, R > transpose(const Eigen::Matrix< T, R, C > &m)
Definition: transpose.hpp:12
T trace(const Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > &m)
Returns the trace of the specified matrix.
Definition: trace.hpp:20
boost::enable_if_c< boost::is_arithmetic< T >::value, Eigen::Matrix< double, R, C > >::type multiply(const Eigen::Matrix< double, R, C > &m, T c)
Return specified matrix multiplied by specified scalar.
Definition: multiply.hpp:25
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.