• Divides two tf.Tensors element-wise, A / B. Supports broadcasting. Return 0 if denominator is 0.

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

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

    a.divNoNan(b).print(); // or tf.divNoNan(a, b)
    a.divNoNan(c).print(); // or tf.divNoNan(a, c)

    Type Parameters

    Parameters

    • a: Tensor<Rank> | TensorLike

      The first tensor as the numerator.

    • b: Tensor<Rank> | TensorLike

      The second tensor as the denominator. Must have the same dtype as a.

    Returns T

    Doc

Generated using TypeDoc