Skip to content

daft.functions.arcsinh#

arcsinh #

arcsinh(expr: Expression) -> Expression

The elementwise inverse hyperbolic sine of a numeric expression.

Source code in daft/functions/numeric.py
156
157
158
def arcsinh(expr: Expression) -> Expression:
    """The elementwise inverse hyperbolic sine of a numeric expression."""
    return Expression._call_builtin_scalar_fn("arcsinh", expr)