Stan Math Library
2.6.3
probability, sampling & optimization
Main Page
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerator
Friends
Macros
stan
math
prim
mat
fun
rows.hpp
Go to the documentation of this file.
1
#ifndef STAN_MATH_PRIM_MAT_FUN_ROWS_HPP
2
#define STAN_MATH_PRIM_MAT_FUN_ROWS_HPP
3
4
#include <
stan/math/prim/mat/fun/Eigen.hpp
>
5
6
namespace
stan {
7
namespace
math {
8
9
template
<
typename
T,
int
R,
int
C>
10
inline
11
size_t
12
rows
(
const
Eigen::Matrix<T, R, C>& m) {
13
return
m.rows();
14
}
15
16
}
17
}
18
#endif
stan::math::rows
size_t rows(const Eigen::Matrix< T, R, C > &m)
Definition:
rows.hpp:12
Eigen.hpp
[
Stan Home Page
]
© 2011–2015, Stan Development Team.