Stan Math Library  2.12.0
reverse mode automatic differentiation
col.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_FUN_COL_HPP
2 #define STAN_MATH_PRIM_MAT_FUN_COL_HPP
3 
6 
7 namespace stan {
8  namespace math {
9 
22  template <typename T>
23  inline
24  Eigen::Matrix<T, Eigen::Dynamic, 1>
25  col(const Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic>& m,
26  size_t j) {
27  check_column_index("col", "j", m, j);
28  return m.col(j - 1);
29  }
30 
31  }
32 }
33 #endif
Eigen::Matrix< T, Eigen::Dynamic, 1 > col(const Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > &m, size_t j)
Return the specified column of the specified matrix using start-at-1 indexing.
Definition: col.hpp:25
bool check_column_index(const char *function, const char *name, const Eigen::Matrix< T_y, R, C > &y, const size_t i)
Return true if the specified index is a valid column of the matrix.

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