mindspore.Tensor.erfc
- mindspore.Tensor.erfc()[源代码]
逐元素计算原Tensor的互补误差函数。 更多细节参考
mindspore.ops.erfc()
。- 返回:
Tensor,具有与原Tensor相同的数据类型和shape。
- 异常:
TypeError - 原Tensor的数据类型既不是float16也不是float32。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> x = Tensor(np.array([-1, 0, 1, 2, 3]), mindspore.float32) >>> output = x.erfc() >>> print(output) [1.8427168e+00 1.0000000e+00 1.5728319e-01 4.6912432e-03 2.2351742e-05]