nsyMatrix-class(Matrix)
nsyMatrix-class()所属R语言包:Matrix
Symmetric Dense Nonzero-Pattern Matrices
对称密集模式非零矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The "nsyMatrix" class is the class of symmetric, dense nonzero-pattern matrices in non-packed storage and "nspMatrix" is the class of of these in packed storage. Only the upper triangle or the lower triangle is stored.
类"nsyMatrix"是对称,密集模式非零矩阵类非包装储存和"nspMatrix"是这些类包装存储。只存储上三角或下三角。
类的对象----------Objects from the Class----------
Objects can be created by calls of the form new("nsyMatrix", ...).
创建对象可以通过电话的形式new("nsyMatrix", ...)。
插槽----------Slots----------
uplo: Object of class "character". Must be
uplo类"character"的对象。必须
x: Object of class "logical". The logical
x类"logical"的对象。逻辑
Dim,Dimnames: The dimension (a length-2 "integer") and corresponding names (or NULL), see the
Dim,Dimnames:尺寸(长度-2"integer")和(或NULL),看到相应的名称
factors: Object of class "list". A named
factors类"list"的对象。命名
延伸----------Extends----------
"nsyMatrix" extends class "ngeMatrix", directly, whereas<br> "nspMatrix" extends class "ndenseMatrix", directly.
"nsyMatrix"类"ngeMatrix",直接,而参考"nspMatrix"扩展类"ndenseMatrix",直接延伸。
Both extend class "symmetricMatrix", directly, and class "Matrix" and others, indirectly, use showClass("nsyMatrix"), e.g., for details.
"symmetricMatrix",直接和类都扩展类"Matrix"和其他人,间接使用showClass("nsyMatrix"),例如,有关详情。
方法----------Methods----------
Currently, mainly t() and coercion methods (for as(.); use, e.g., showMethods(class="dsyMatrix") for details.
目前,主要是t()和胁迫的方法(as(.);使用,例如showMethods(class="dsyMatrix")详情。
参见----------See Also----------
ngeMatrix, Matrix, t
ngeMatrix,Matrix,t
举例----------Examples----------
(s0 <- new("nsyMatrix"))
(M2 <- Matrix(c(TRUE, NA,FALSE,FALSE), 2,2)) # logical dense (ltr)[逻辑密集(LTR)]
(sM <- M2 & t(M2)) # "lge"[“LGE”]
class(sM <- as(sM, "nMatrix")) # -> "nge"[ - >“NGE”]
(sM <- as(sM, "nsyMatrix")) # -> "nsy"[ - >“NSY”]
str ( sM <- as(sM, "nspMatrix")) # -> "nsp": packed symmetric[ - >“NSP”:包装对称]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|