Stan Math Library  2.20.0
reverse mode automatic differentiation
get.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_META_GET_HPP
2 #define STAN_MATH_PRIM_MAT_META_GET_HPP
3 
5 
6 namespace stan {
7 
8 template <typename T, int R, int C>
9 inline T get(const Eigen::Matrix<T, R, C>& m, size_t n) {
10  return m(static_cast<int>(n));
11 }
12 
13 template <typename T, int R, int C>
14 inline T get(const Eigen::Array<T, R, C>& m, size_t n) {
15  return m(static_cast<int>(n));
16 }
17 
18 } // namespace stan
19 #endif

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