Primitive(base)
Primitive()所属R语言包:base
Look Up a Primitive Function
看一个原函数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
.Primitive looks up by name a "primitive" (internally implemented) function.
.Primitive看起来了名的“原始”(内部实现)功能。
用法----------Usage----------
.Primitive(name)
参数----------Arguments----------
参数:name
name of the R function.
R函数的名称。
Details
详情----------Details----------
The advantage of .Primitive over .Internal functions is the potential efficiency of argument passing, and that positional matching can be used where desirable, e.g. in switch. For more details, see the "R Internals Manual".
.Primitive超过.Internal功能的参数传递的潜在效率,可用于该位置匹配,在理想的情况下,如优势switch。有关详细信息,请参阅“R内部手册”。
All primitive functions are in the base namespace.
基地命名空间中的所有基本功能。
This function is almost never used: `name` or, more carefully, get(name, envir=baseenv()) work equally well and do not depend on knowing which functions are primitive (which does change as R evolves).
几乎从来没有使用过此功能:name,更仔细,“get(name, envir=baseenv())工作同样不依赖于知道哪些职能是原始的(它为R的变化发展)。
参见----------See Also----------
.Internal.
.Internal。
举例----------Examples----------
mysqrt <- .Primitive("sqrt")
c
.Internal # this one *must* be primitive![*一*必须是原始!]
`if` # need backticks[需要反引号]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|