mindspore.mint.logical_and =========================== .. py:function:: mindspore.mint.logical_and(input, other) 逐元素计算两个tensor的逻辑与运算。 .. math:: out_{i} = input_{i} \wedge other_{i} .. note:: - 支持广播。 - 支持隐式类型转换。 参数: - **input** (Union[Tensor, bool]) - 第一个输入。 - **other** (Union[Tensor, bool]) - 第二个输入。 返回: Tensor