Skip to content

daft.functions.arctanh#

arctanh #

arctanh(expr: Expression) -> Expression

The elementwise inverse hyperbolic tangent of a numeric expression.

Source code in daft/functions/numeric.py
146
147
148
def arctanh(expr: Expression) -> Expression:
    """The elementwise inverse hyperbolic tangent of a numeric expression."""
    return Expression._call_builtin_scalar_fn("arctanh", expr)