lsyMatrix-class(Matrix)
lsyMatrix-class()所属R语言包:Matrix
Symmetric Dense Logical Matrices
对称稠密逻辑矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The "lsyMatrix" class is the class of symmetric, dense logical matrices in non-packed storage and "lspMatrix" is the class of of these in packed storage. In the packed form, only the upper triangle or the lower triangle is stored.
"lsyMatrix"类是类对称,密集的逻辑矩阵在非包装储存和"lspMatrix"是这些类包装存储。在包装的形式存储,只有上三角或下三角。
类的对象----------Objects from the Class----------
Objects can be created by calls of the form new("lsyMatrix", ...).
创建对象可以通过电话的形式new("lsyMatrix", ...)。
插槽----------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----------
Both extend classes "ldenseMatrix" and "symmetricMatrix", directly; further, class "Matrix" and others, indirectly. Use showClass("lsyMatrix"), e.g., for details.
两个扩展类"ldenseMatrix"和"symmetricMatrix",直接进一步,类"Matrix"和其他间接。使用的showClass("lsyMatrix"),有关详细信息,例如。
方法----------Methods----------
Currently, mainly t() and coercion methods (for as(.); use, e.g., showMethods(class="dsyMatrix") for details.
目前,主要是t()和胁迫的方法(as(.);使用,例如showMethods(class="dsyMatrix")详情。
参见----------See Also----------
lgeMatrix, Matrix, t
lgeMatrix,Matrix,t
举例----------Examples----------
(M2 <- Matrix(c(TRUE, NA,FALSE,FALSE), 2,2)) # logical dense (ltr)[逻辑密集(LTR)]
str(M2)
# can[可以]
(sM <- M2 | t(M2)) # "lge"[“LGE”]
as(sM, "lsyMatrix")
str(sM <- as(sM, "lspMatrix")) # packed symmetric[包装对称]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|