erf(VGAM)
erf()所属R语言包:VGAM
Error Function
错误功能
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the error function based on the normal distribution.
计算误差函数的基础上的正常分布。
用法----------Usage----------
erf(x)
参数----------Arguments----------
参数:x
Numeric.
数字。
Details
详细信息----------Details----------
Erf(x) is defined as
Erf(x)被定义为
so that it is closely related to pnorm.
因此,它是密切相关的pnorm。
值----------Value----------
Returns the value of the function evaluated at x.
返回值的函数评价x。
注意----------Note----------
Some authors omit the term 2/sqrt(pi) from the definition of Erf(x). Although defined for complex arguments, this function only works for real arguments.
一些学者忽略了2/sqrt(pi)的定义Erf(x)。虽然定义为复杂的参数,此功能仅适用于真正的参数。
The complementary error function erfc(x) is defined as 1-erf(x), and is implemented by erfc.
互补误差函数erfc(x)被定义为1-erf(x),,并实施erfc的。
(作者)----------Author(s)----------
T. W. Yee
参考文献----------References----------
Handbook of Mathematical Functions with Formulas, Graphs, and Mathematical Tables, New York: Dover Publications Inc.
参见----------See Also----------
pnorm.
pnorm。
实例----------Examples----------
## Not run: [#不运行:]
curve(erf, -3, 3, col="red", ylab="", las=1)
curve(pnorm, -3, 3, add=TRUE, col="blue", lty="dotted", lwd=2)
abline(v=0, h=0, lty="dashed")
legend("topleft", c("erf(x)", "pnorm(x)"), col=c("red", "blue"),
lty=c("solid", "dotted"), lwd=1:2)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|