Stan Math Library  2.6.3
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros
divide.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_FUN_DIVIDE_HPP
2 #define STAN_MATH_PRIM_MAT_FUN_DIVIDE_HPP
3 
4 #include <boost/type_traits/is_arithmetic.hpp>
5 #include <boost/utility/enable_if.hpp>
7 
8 namespace stan {
9  namespace math {
10 
19  template <int R, int C, typename T>
20  inline
21  typename boost::enable_if_c<boost::is_arithmetic<T>::value,
22  Eigen::Matrix<double, R, C> >::type
23  divide(const Eigen::Matrix<double, R, C>& m,
24  T c) {
25  return m / c;
26  }
27 
28  }
29 }
30 #endif
stan::return_type< T1, T2 >::type divide(const T1 &v, const T2 &c)
Definition: divide.hpp:17

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