Python/ref math erf

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.erf()方法

Methods数学方法

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

    # Import math Library
import math 

# Print error function for 
    different 
    numbers 
print (math.erf(0.67))
print (math.erf(1.34))
print 
    (math.erf(-6))

定义和用法

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

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

句法

math.erf(x)

参数值

参数 描述
x 需要。查找错误函数的数字

技术细节

返回值: A

float 值,代表数字的误差函数

Python版本: 3.2

更多例子

计算相同数字的正负的数学误差函数:

    print (math.erf(1.28))

    print (math.erf(-1.28))

Methods数学方法