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
9#include <cmath>
10#include <complex>
11
12namespace stan {
13namespace math {
14
15template <typename T>
16inline fvar<T> tan(const fvar<T>& x) {
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:90
fvar< T > tan(const fvar< T > &x)
Definition tan.hpp:16
fvar< T > cos(const fvar< T > &x)
Definition cos.hpp:16
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
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