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