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

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