Stan Math Library  2.15.0
reverse mode automatic differentiation
quad_form_diag.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_FUN_QUAD_FORM_DIAG_HPP
2 #define STAN_MATH_PRIM_MAT_FUN_QUAD_FORM_DIAG_HPP
3 
5 #include <boost/math/tools/promotion.hpp>
9 
10 namespace stan {
11  namespace math {
12 
13  template <typename T1, typename T2, int R, int C>
14  inline Eigen::Matrix <
15  typename boost::math::tools::promote_args<T1, T2>::type,
16  Eigen::Dynamic, Eigen::Dynamic>
17  quad_form_diag(const Eigen::Matrix<T1, Eigen::Dynamic, Eigen::Dynamic>& mat,
18  const Eigen::Matrix<T2, R, C>& vec) {
19  using boost::math::tools::promote_args;
20  check_vector("quad_form_diag", "vec", vec);
21  check_square("quad_form_diag", "mat", mat);
22  int size = vec.size();
23  check_size_match("quad_form_diag", "rows of mat", mat.rows(),
24  "size of vec", size);
25  Eigen::Matrix<typename promote_args<T1, T2>::type,
26  Eigen::Dynamic, Eigen::Dynamic> result(size, size);
27  for (int i = 0; i < size; i++) {
28  result(i, i) = vec(i)*vec(i)*mat(i, i);
29  for (int j = i+1; j < size; ++j) {
30  typename promote_args<T1, T2>::type temp = vec(i)*vec(j);
31  result(j, i) = temp*mat(j, i);
32  result(i, j) = temp*mat(i, j);
33  }
34  }
35  return result;
36  }
37 
38  }
39 }
40 #endif
void check_vector(const char *function, const char *name, const Eigen::Matrix< T, R, C > &x)
Check if the matrix is either a row vector or column vector.
void check_size_match(const char *function, const char *name_i, T_size1 i, const char *name_j, T_size2 j)
Check if the provided sizes match.
void check_square(const char *function, const char *name, const Eigen::Matrix< T_y, Eigen::Dynamic, Eigen::Dynamic > &y)
Check if the specified matrix is square.
int size(const std::vector< T > &x)
Return the size of the specified standard vector.
Definition: size.hpp:17
Eigen::Matrix< typename boost::math::tools::promote_args< T1, T2 >::type, Eigen::Dynamic, Eigen::Dynamic > quad_form_diag(const Eigen::Matrix< T1, Eigen::Dynamic, Eigen::Dynamic > &mat, const Eigen::Matrix< T2, R, C > &vec)

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