Stan Math Library  2.10.0
reverse mode automatic differentiation
value_of_rec.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_FUN_VALUE_OF_REC_HPP
2 #define STAN_MATH_PRIM_MAT_FUN_VALUE_OF_REC_HPP
3 
6 
7 namespace stan {
8  namespace math {
9 
22  template <typename T, int R, int C>
23  inline Eigen::Matrix<double, R, C>
24  value_of_rec(const Eigen::Matrix<T, R, C>& M) {
26  Eigen::Matrix<double, R, C> Md(M.rows(), M.cols());
27  for (int j = 0; j < M.cols(); j++)
28  for (int i = 0; i < M.rows(); i++)
29  Md(i, j) = value_of_rec(M(i, j));
30  return Md;
31  }
32 
44  template <int R, int C>
45  inline typename Eigen::Matrix<double, R, C>
46  value_of_rec(const Eigen::Matrix<double, R, C>& x) {
47  return x;
48  }
49  }
50 }
51 
52 #endif
double value_of_rec(const fvar< T > &v)
Return the value of the specified variable.

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