Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
log.hpp
Go to the documentation of this file.
1 #ifndef STAN__MATH__MATRIX__LOG_HPP
2 #define STAN__MATH__MATRIX__LOG_HPP
3 
5 
6 namespace stan {
7  namespace math {
8 
15  template<typename T, int Rows, int Cols>
16  inline Eigen::Matrix<T,Rows,Cols> log(const Eigen::Matrix<T,Rows,Cols>& m) {
17  return m.array().log().matrix();
18  }
19 
20 
21  }
22 }
23 #endif
Eigen::Matrix< T, Rows, Cols > log(const Eigen::Matrix< T, Rows, Cols > &m)
Return the element-wise logarithm of the matrix or vector.
Definition: log.hpp:16

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