• Computes arctangent of tf.Tensors a / b element-wise: atan2(a, b). Supports broadcasting.

    const a = tf.tensor1d([1.0, 1.0, -1.0, .7]);
    const b = tf.tensor1d([2.0, 13.0, 3.5, .21]);

    tf.atan2(a, b).print()

    Type Parameters

    Parameters

    Returns T

    Doc

Generated using TypeDoc