Function atan

  • Plot of atan and its gradient

    Calculates:

    output = atan(input)
    

    Gradient:

    inputGrad = outputGrad / (input * input + 1)
    

    Parameters

    • input: Tensor

      the input tensor of any shape

    Returns Tensor

    the output tensor

Generated using TypeDoc