1 #ifndef STAN__MATH__MATRIX__LOG_HPP
2 #define STAN__MATH__MATRIX__LOG_HPP
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();
Eigen::Matrix< T, Rows, Cols > log(const Eigen::Matrix< T, Rows, Cols > &m)
Return the element-wise logarithm of the matrix or vector.