Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
diagonal.hpp
Go to the documentation of this file.
1 #ifndef STAN__MATH__MATRIX__DIAGONAL_HPP
2 #define STAN__MATH__MATRIX__DIAGONAL_HPP
3 
5 
6 namespace stan {
7  namespace math {
8 
15  template <typename T>
16  inline
17  Eigen::Matrix<T,Eigen::Dynamic,1>
18  diagonal(const Eigen::Matrix<T,Eigen::Dynamic,Eigen::Dynamic>& m) {
19  return m.diagonal();
20  }
21 
22  }
23 }
24 #endif
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:18

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