Stan Math Library  2.12.0
reverse mode automatic differentiation
log10.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_FUN_LOG10_HPP
2 #define STAN_MATH_PRIM_MAT_FUN_LOG10_HPP
3 
5 #include <cmath>
6 
7 namespace stan {
8  namespace math {
9 
16  struct log10_fun {
17  template <typename T>
18  static inline T fun(const T& x) {
19  using std::log10;
20  return log10(x);
21  }
22  };
23 
30  template <typename T>
31  inline typename apply_scalar_unary<log10_fun, T>::return_t
32  log10(const T& x) {
34  }
35 
36  }
37 }
38 
39 #endif
var log10(const var &a)
Return the base 10 log of the specified variable (cmath).
Definition: log10.hpp:54
fvar< T > log10(const fvar< T > &x)
Definition: log10.hpp:13
Structure to wrap log10() so it can be vectorized.
Definition: log10.hpp:16
static return_t apply(const T &x)
Return the result of applying the function defined by the template parameter F to the specified matri...
static T fun(const T &x)
Definition: log10.hpp:18

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