Automatic Differentiation
 
Loading...
Searching...
No Matches
exp2.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_FWD_FUN_EXP2_HPP
2#define STAN_MATH_FWD_FUN_EXP2_HPP
3
8#include <cmath>
9
10namespace stan {
11namespace math {
12
13template <typename T>
14inline fvar<T> exp2(const fvar<T>& x) {
15 return fvar<T>(exp2(x.val_), x.d_ * exp2(x.val_) * LOG_TWO);
16}
17
18} // namespace math
19} // namespace stan
20#endif
fvar< T > exp2(const fvar< T > &x)
Definition exp2.hpp:14
static constexpr double LOG_TWO
The natural logarithm of 2, .
Definition constants.hpp:80
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Definition fvar.hpp:9
Scalar val_
The value of this variable.
Definition fvar.hpp:49
Scalar d_
The tangent (derivative) of this variable.
Definition fvar.hpp:61
This template class represents scalars used in forward-mode automatic differentiation,...
Definition fvar.hpp:40