Python math.erfc() 方法
例如:
打印不同数字的互补误差函数:
# Import math Library import math # 输出不同数字的互补误差函数 print (math.erfc(0.67)) print (math.erfc(1.34)) print (math.erfc(-6))
1、定义和用法
math.erfc()
方法返回数字的互补误差函数。
此方法接受-inf和+inf之间的值,并返回0和2之间的值。
2、调用语法
math.erfc(x)
3、参数说明
参数 | 描述 |
x | 必需的参数, 找出互补误差函数的数 |
4、方法说明
返回值: |
|
Python Version: | 3.2 |