• Returns the truth value of a AND b element-wise. Supports broadcasting.

    const a = tf.tensor1d([false, false, true, true], 'bool');
    const b = tf.tensor1d([false, true, false, true], 'bool');

    a.logicalAnd(b).print();

    Type Parameters

    Parameters

    Returns T

    Doc

Generated using TypeDoc