Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
diag_post_multiply.hpp
Go to the documentation of this file.
1 #ifndef STAN__MATH__MATRIX__DIAG_POST_MULTIPLY_HPP
2 #define STAN__MATH__MATRIX__DIAG_POST_MULTIPLY_HPP
3 
4 #include <stdexcept>
5 #include <boost/math/tools/promotion.hpp>
7 
8 namespace stan {
9  namespace math {
10 
11  template <typename T1, typename T2, int R1,int C1,int R2,int C2>
12  Eigen::Matrix<typename boost::math::tools::promote_args<T1,T2>::type, R1, C1>
13  diag_post_multiply(const Eigen::Matrix<T1,R1,C1>& m1,
14  const Eigen::Matrix<T2,R2,C2>& m2) {
15  if (m2.cols() != 1 && m2.rows() != 1)
16  throw std::domain_error("m2 must be a vector");
17  int m1_cols = m1.cols();
18  if (m2.size() != m1_cols)
19  throw std::domain_error("m2 must have same length as m1 has columns");
20  int m1_rows = m1.rows();
21  Eigen::Matrix<typename boost::math::tools::promote_args<T1,T2>::type, R1, C1>
22  result(m1_rows, m1_cols);
23 
24  for (int j = 0; j < m1_cols; ++j)
25  for (int i = 0; i < m1_rows; ++i)
26  result(i,j) = m2(j) * m1(i,j);
27  return result;
28  }
29 
30  }
31 }
32 #endif
Eigen::Matrix< typename boost::math::tools::promote_args< T1, T2 >::type, R1, C1 > diag_post_multiply(const Eigen::Matrix< T1, R1, C1 > &m1, const Eigen::Matrix< T2, R2, C2 > &m2)

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