iarray.sinh#
- iarray.sinh(iarr: IArray)#
Hyperbolic sine, element-wise.
Equivalent to
1/2 * (ia.exp(x) - ia.exp(-x))
.- Parameters
iarr¶(self) (IArray container) – Input data.
- Returns
out – A lazy expression that must be evaluated via out.eval(), which will compute the actual hyperbolic sine values.
- Return type
References