Python math.erfc() 方法

实例

打印不同数字的互补误差函数:

  1. # Import math Library
  2. import math
  3. #Print the complementary error function of a number
  4. print (math.erfc(0.67))
  5. print (math.erfc(1.34))
  6. print (math.erfc(-6))

定义与用法

math.erfc() 方法返回数字的互补误差函数。

此方法接受介于 -inf 和 +inf 之间的值,并返回介于 0 和 2 之间的值。


语法

  1. math.erfc(x)

参数值

参数描述
x必填。 一个需要求互补误差函数的数子

技术细节

返回值:一个 float 值,表示数字的互补误差函数
Python 版本:3.2

分类导航