Skip to content

daft.functions.sinh#

sinh #

sinh(expr: Expression) -> Expression

The elementwise hyperbolic sine of a numeric expression.

Source code in daft/functions/numeric.py
105
106
107
def sinh(expr: Expression) -> Expression:
    """The elementwise hyperbolic sine of a numeric expression."""
    return Expression._call_builtin_scalar_fn("sinh", expr)