Returns the truth value of x AND y element-wise.
View aliases
Main aliases
Compat aliases for migrationSee Migration guide for more details.
tf.compat.v1.logical_and
, tf.compat.v1.math.logical_and
, `tf.compat.v2.logical_and`, `tf.compat.v2.math.logical_and`
tf.math.logical_and(
x, y, name=None
)
Args | |
---|---|
x
|
A Tensor of type bool .
|
y
|
A Tensor of type bool .
|
name
|
A name for the operation (optional). |
Returns | |
---|---|
A Tensor of type bool .
|