MathFun(base)
MathFun()所属R语言包:base
Miscellaneous Mathematical Functions
杂项数学函数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions compute miscellaneous mathematical functions. The naming follows the standard for computer languages such as C or Fortran.
这些函数的计算杂的数学函数。命名如下的计算机语言,如C或Fortran标准。
用法----------Usage----------
abs(x)
sqrt(x)
参数----------Arguments----------
参数:x
a numeric or complex vector or array.
一个数字或complex向量或数组。
Details
详情----------Details----------
These are internal generic primitive functions: methods can be defined for them individually or via the Math group generic. For complex arguments (and the default method), z, abs(z) == Mod(z) and sqrt(z) == z^0.5.
这些都是内部通用的原始功能:方法可以为他们单独或通过Math组通用的定义。对于复杂的参数(默认的方法),z,abs(z) == Mod(z)和sqrt(z) == z^0.5。
abs(x) returns an integer vector when x is integer or logical.
abs(x)返回integer向量时x是integer或logical。
S4方法----------S4 methods----------
Both are S4 generic and members of the Math group generic.
都是S4通用和Math组成员的通用。
参考文献----------References----------
The New S Language. Wadsworth & Brooks/Cole.
参见----------See Also----------
Arithmetic for simple, log for logarithmic, sin for trigonometric, and Special for special mathematical functions.
Arithmetic简单,log数,sin三角Special特殊的数学函数。
"plotmath" for the use of sqrt in plot annotation.
plotmath为sqrt图注解的使用。
举例----------Examples----------
require(stats) # for spline[样条]
require(graphics)
xx <- -9:9
plot(xx, sqrt(abs(xx)), col = "red")
lines(spline(xx, sqrt(abs(xx)), n=101), col = "pink")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|