Documentation moved.This entry is now part of the unified function reference. Open the unified page → API/nerdamer APIFunctionnerdamer.sinhsrc/index.ts:759nerdamer.sinh(x: ExpressionInput): ExpressionComputes the hyperbolic sine of an expression. -`sinh(0) = 0`-`sinh(+∞) = +∞`,`sinh(−∞) = −∞`- For complex inputs:`sinh(a + bi) = sinh(a)·cos(b) + i·cosh(a)·sin(b)`ParametersNameTypeDescriptionxExpressionInputThe input expression.ReturnsExpression — The hyperbolic sine of `x`.Examplessinh(0).text() // "0" // Symbolic sinh('x').text() // "sinh(x)"