Python math.erfc() 方法
实例
打印不同数字的互补误差函数:
# Import math Library
import math
# 打印不同数字的互补误差函数
print (math.erfc(0.67))
print (math.erfc(1.34))
print (math.erfc(-6))
亲自试一试 »
定义和用法
math.erfc()
方法返回一个数的互补误差函数。
这个方法接受一个介于 -inf 和 + inf 之间的值,并返回一个介于 0 和 2 之间的值。
语法
math.erfc(x)
参数值
参数 | 描述 |
---|---|
x | 必需。一个数字来找到互补的误差函数 |
技术细节
返回值: | 一个float 值,代表一个数的互补误差函数 |
---|---|
Python 版本: | 3.2 |