mindspore.ops.isreal
- mindspore.ops.isreal(input)[源代码]
逐元素判断是否为实数。 一个复数的虚部是0时也被看作是实数。
- 参数:
input (Tensor) - 输入Tensor。
- 返回:
Tensor,对应 input 元素为实数的位置是
true
,反之为false
。- 异常:
TypeError - input 不是Tensor。
- 支持平台:
GPU
CPU
样例:
>>> from mindspore import ops, Tensor >>> from mindspore import dtype as mstype >>> x = Tensor([1, 1+1j, 2+0j], mstype.complex64) >>> output = ops.isreal(x) >>> print(output) [ True False True]