logical_and¶
- paddle.fluid.layers.nn. logical_and ( x, y, out=None, name=None ) [source]
- 
         logical_andoperator computes element-wise logical AND onxandy, and returnsout.outis N-dim booleanTensor. Each element ofoutis calculated by\[out = x \&\& y\]Note paddle.logical_andsupports broadcasting. If you want know more about broadcasting, please refer to user_guide_broadcasting.- Parameters
- 
           - x (Tensor) – the input tensor, it’s data type should be one of bool, int8, int16, in32, in64, float32, float64. 
- y (Tensor) – the input tensor, it’s data type should be one of bool, int8, int16, in32, in64, float32, float64. 
- out (Tensor) – The - Tensorthat specifies the output of the operator, which can be any- Tensorthat has been created in the program. The default value is None, and a new- Tensorwill be created to save the output.
- name (str, optional) – Name for the operation (optional, default is None). For more information, please refer to Name. 
 
- Returns
- 
           N-D Tensor. A location into which the result is stored. It’s dimension equals with x.
 Examples import paddle x = paddle.to_tensor([True]) y = paddle.to_tensor([True, False, True, False]) res = paddle.logical_and(x, y) print(res) # [True False True False] 
