Stan Math Library
2.20.0
reverse mode automatic differentiation
stan
math
prim
mat
fun
diagonal.hpp
Go to the documentation of this file.
1
#ifndef STAN_MATH_PRIM_MAT_FUN_DIAGONAL_HPP
2
#define STAN_MATH_PRIM_MAT_FUN_DIAGONAL_HPP
3
4
#include <
stan/math/prim/mat/fun/Eigen.hpp
>
5
6
namespace
stan
{
7
namespace
math {
8
15
template
<
typename
T>
16
inline
Eigen::Matrix<T, Eigen::Dynamic, 1>
diagonal
(
17
const
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic>& m) {
18
return
m.diagonal();
19
}
20
21
}
// namespace math
22
}
// namespace stan
23
#endif
stan
Definition:
log_sum_exp.hpp:8
stan::math::diagonal
Eigen::Matrix< T, Eigen::Dynamic, 1 > diagonal(const Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > &m)
Return a column vector of the diagonal elements of the specified matrix.
Definition:
diagonal.hpp:16
Eigen.hpp
[
Stan Home Page
]
© 2011–2018, Stan Development Team.