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