Stan Math Library  2.6.3
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros
exp2.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_FWD_SCAL_FUN_EXP2_HPP
2 #define STAN_MATH_FWD_SCAL_FUN_EXP2_HPP
3 
4 #include <stan/math/fwd/core.hpp>
7 #include <cmath>
8 
9 namespace stan {
10  namespace math {
11 
12  template <typename T>
13  inline fvar<T>
14  exp2(const fvar<T>& x) {
15  using stan::math::exp2;
16  using std::log;
17  return fvar<T>(exp2(x.val_), x.d_ * exp2(x.val_) * stan::math::LOG_2);
18  }
19 
20  }
21 }
22 #endif
const double LOG_2
The natural logarithm of 2, .
Definition: constants.hpp:33
fvar< T > log(const fvar< T > &x)
Definition: log.hpp:15
fvar< T > exp2(const fvar< T > &x)
Definition: exp2.hpp:14

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