autodiff.reverse.sinh

autodiff.reverse.sinh(x)

Return the hyperbolic sine of x.

Parameters
xint, float, Node
Returns
yfloat or Node

Examples

>>> ad.sinh(1)
1.1752011936438014
>>> x = ad.Node(2)
>>> ad.sinh(x)
Node(3.626860407847019)