Aliases:
tf.RaggedTensor.__and__
tf.logical_and
tf.math.logical_and
tf.math.logical_and(
x,
y,
name=None
)
Defined in generated file: tensorflow/python/ops/gen_math_ops.py
.
Returns the truth value of x AND y element-wise.
NOTE: math.logical_and
supports broadcasting. More about broadcasting
here
Args:
x
: ATensor
of typebool
.y
: ATensor
of typebool
.name
: A name for the operation (optional).
Returns:
A Tensor
of type bool
.