Automatic Differentiation
 
Loading...
Searching...
No Matches
cosh.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_FWD_FUN_COSH_HPP
2#define STAN_MATH_FWD_FUN_COSH_HPP
3
8#include <cmath>
9#include <complex>
10
11namespace stan {
12namespace math {
13
14template <typename T>
15inline fvar<T> cosh(const fvar<T>& x) {
16 using std::cosh;
17 using std::sinh;
18 return fvar<T>(cosh(x.val_), x.d_ * sinh(x.val_));
19}
20
28template <typename T>
29inline std::complex<fvar<T>> cosh(const std::complex<fvar<T>>& z) {
31}
32
33} // namespace math
34} // namespace stan
35#endif
std::complex< V > complex_cosh(const std::complex< V > &z)
Return the hyperbolic cosine of the complex argument.
Definition cosh.hpp:71
fvar< T > cosh(const fvar< T > &x)
Definition cosh.hpp:15
fvar< T > sinh(const fvar< T > &x)
Definition sinh.hpp:13
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