Python math.erf() 方法

实例

不同数字的打印错误功能:

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

定义与用法

math.erf() 方法返回数字的误差函数。

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


语法

  1. math.erf(x)

参数值

参数描述
x必填。用于查找错误函数的数字

技术细节

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

更多实例

实例

计算相同数值的数学误差函数,正和负:

  1. # Import math Library
  2. import math
  3. #Print the error function of the same number, positive and negative
  4. print (math.erf(1.28))
  5. print (math.erf(-1.28))

分类导航