Stan Math Library
4.9.0
Automatic Differentiation
|
The exponentiation of the specified variable minus 1 (C99).
The derivative is given by
\(\frac{d}{dx} \exp(a) - 1 = \exp(a)\).
\[ \mbox{expm1}(x) = \begin{cases} e^x-1 & \mbox{if } -\infty\leq x \leq \infty \\[6pt] \textrm{NaN} & \mbox{if } x = \textrm{NaN} \end{cases} \]
\[ \frac{\partial\, \mbox{expm1}(x)}{\partial x} = \begin{cases} e^x & \mbox{if } -\infty\leq x\leq \infty \\[6pt] \textrm{NaN} & \mbox{if } x = \textrm{NaN} \end{cases} \]
a | The variable. |