Function asinh

  • Plot of asinh and its gradient

    Calculates:

    output = asinh(input)
    

    Gradient:

    inputGrad = outputGrad / sqrt(input * input + 1)
    

    Parameters

    • input: Tensor

      the input tensor of any shape

    Returns Tensor

    the output tensor

Generated using TypeDoc