mindspore.ops.Erfc
- class mindspore.ops.Erfc[源代码]
逐元素计算 x 的互补误差函数。
更多参考详见
mindspore.ops.erfc()
。- 支持平台:
Ascend
GPU
CPU
样例:
>>> x = Tensor(np.array([-1, 0, 1, 2, 3]), mindspore.float32) >>> erfc = ops.Erfc() >>> output = erfc(x) >>> print(output) [1.8427168e+00 1.0000000e+00 1.5728319e-01 4.6912432e-03 2.2351742e-05]