array_or_vector-class(Rmpfr)
array_or_vector-class()所属R语言包:Rmpfr
Auxiliary Class "array\_or\_vector"
辅助类“阵列\ _or \ _vector”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
"array_or_vector" is the class union of c("array", "matrix", "vector") and exists for its use in signatures of method definitions.
"array_or_vector"是工会的c("array", "matrix", "vector")类,存在于它的使用方法定义的签名。
Details
详细信息----------Details----------
Using "array_or_vector" instead of just "vector" in a signature makes an important difference: E.g., if we had setMethod(crossprod, c(x="mpfr", y="vector"), function(x,y) CPR(x,y)), a call crossprod(x, matrix(1:6, 2,3)) would extend into a call of CPR(x, as(y, "vector")) such that CPR()'s second argument would simply be a vector instead of the desired 2 x 3 matrix.
使用"array_or_vector",而不是"vector"的签名提出了一个重要的区别:例如,如果我们有setMethod(crossprod, c(x="mpfr", y="vector"), function(x,y) CPR(x,y)),一个检测crossprod(x, matrix(1:6, 2,3))将延伸至一个叫CPR(x, as(y, "vector")) 这样CPR()的第二个参数是一个简单的矢量,而不是所期望的2 x 3矩阵。
类对象----------Objects from the Class----------
A virtual Class: No objects may be created from it.
可能会从它创建一个虚拟类:没有对象。
实例----------Examples----------
showClass("array_or_vector")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|