mindspore.Tensor.logical_and
- mindspore.Tensor.logical_and(other)
详情请参考
mindspore.ops.logical_and()
。- 支持平台:
Ascend
GPU
CPU
样例:
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor >>> x = Tensor(np.array([True, False, True]), mindspore.bool_) >>> y = Tensor(np.array([True, True, False]), mindspore.bool_) >>> output = x.logical_and(y) >>> print(output) [ True False False] >>> x = Tensor(1, mindspore.bool_) >>> y = Tensor(0, mindspore.bool_) >>> output = x.logical_and(y) >>> print(output) False >>> x = True >>> y = Tensor(0, mindspore.bool_) >>> output = x.logical_and(y) >>> print(output) False >>> x = True >>> y = Tensor(np.array([True, False]), mindspore.bool_) >>> output = x.logical_and(y) >>> print(output) [True False]