ltrMatrix-class(Matrix)
ltrMatrix-class()所属R语言包:Matrix
Triangular Dense Logical Matrices
三角密集的逻辑矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The "ltrMatrix" class is the class of triangular, dense, logical matrices in nonpacked storage. The "ltpMatrix" class is the same except in packed storage.
"ltrMatrix"类是类三角形,密集,在nonpacked存储逻辑矩阵。 类"ltpMatrix"是相同的,除了在包装存储。
插槽----------Slots----------
x: Object of class "logical". The logical
x类"logical"的对象。逻辑
uplo: Object of class "character". Must be
uplo类"character"的对象。必须
diag: Object of class "character". Must be either "U", for unit triangular (diagonal is all ones), or
diag类"character"的对象。必须是"U"(是对角线的)为单元的三角形,或
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 "triangularMatrix", directly; further, class "Matrix", "lMatrix" and others, indirectly. Use showClass("ltrMatrix"), e.g., for details.
两个扩展类"ldenseMatrix"和"triangularMatrix",直接进一步,类"Matrix","lMatrix"和其他间接。使用的showClass("ltrMatrix"),有关详细信息,例如。
方法----------Methods----------
Currently, mainly t() and coercion methods (for as(.); use, e.g., showMethods(class="ltpMatrix") for details.
目前,主要是t()和胁迫的方法(as(.);使用,例如showMethods(class="ltpMatrix")详情。
参见----------See Also----------
Classes lgeMatrix, Matrix; function t
类lgeMatrix,Matrix;功能t
举例----------Examples----------
showClass("ltrMatrix")
str(new("ltpMatrix"))
(lutr <- as(upper.tri(matrix(,4,4)), "ltrMatrix"))
str(lutp <- as(lutr, "ltpMatrix"))# packed matrix: only 10 = (4+1)*4/2 entries[包装矩阵:只有10 =(4 +1)* 4/2项]
!lutp ## the logical negation (is *not* logical triangular !)[#逻辑否定(*不是*逻辑三角!)]
## but this one is:[但是这一次是:]
stopifnot(all.equal(lutp, as(!!lutp, "ltpMatrix")))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|