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