• Divides two tf.Tensors element-wise, A / B. Supports broadcasting.

    const a = tf.tensor1d([1, 4, 9, 16]);
    const b = tf.tensor1d([1, 2, 3, 4]);

    a.div(b).print(); // or tf.div(a, b)
    // Broadcast div a with b.
    const a = tf.tensor1d([2, 4, 6, 8]);
    const b = tf.scalar(2);

    a.div(b).print(); // or tf.div(a, b)

    Type Parameters

    Parameters

    Returns T

    Doc