Stan Math Library
4.9.0
Automatic Differentiation
|
Return the hyperbolic tangent of the specified variable (cmath).
The derivative is defined by
\(\frac{d}{dx} \tanh x = \frac{1}{\cosh^2 x}\).
\[ \mbox{tanh}(x) = \begin{cases} \tanh(x) & \mbox{if } -\infty\leq x \leq \infty \\[6pt] \textrm{NaN} & \mbox{if } x = \textrm{NaN} \end{cases} \]
\[ \frac{\partial\, \mbox{tanh}(x)}{\partial x} = \begin{cases} \mbox{sech}^2(x) & \mbox{if } -\infty\leq x\leq \infty \\[6pt] \textrm{NaN} & \mbox{if } x = \textrm{NaN} \end{cases} \]
a | Variable. |