当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R ntrMatrix-class 三角密集逻辑矩阵


R语言 ntrMatrix-class 位于 Matrix 包(package)。

说明

"ntrMatrix" 类是非压缩存储中的三角形密集逻辑矩阵类。除了打包存储之外,"ntpMatrix" 类是相同的。

插槽

x

"logical" 的对象。构成矩阵的逻辑值,按列优先顺序存储。

uplo

"character" 的对象。对于上三角,必须是"U",对于下三角,必须是"L"。

diag

"character" 的对象。必须是 "U" ,单位为三角形(对角线全为 1),或 "N" ;请参阅triangularMatrix

DimDimnames

维度(长度为 2 "integer" )和相应的名称(或 NULL ),请参阅 Matrix 类。

factors

"list" 的对象。已为矩阵计算的分解的命名列表。

扩展

"ntrMatrix"扩展类"ngeMatrix",直接,而
"ntpMatrix"扩展类"ndenseMatrix", 直接地。

两者都直接扩展类 "triangularMatrix" ,并且类 "denseMatrix""lMatrix" 等间接扩展类 showClass("nsyMatrix") ,例如,用于详细信息。

方法

目前,主要是t()和强制方法(对于as(.);使用例如showMethods(class="ntrMatrix")了解详细信息。

例子


showClass("ntrMatrix")

str(new("ntpMatrix"))
(nutr <- as(upper.tri(matrix(, 4, 4)), "ndenseMatrix"))
str(nutp <- pack(nutr)) # packed matrix: only 10 = 4*(4+1)/2 entries
!nutp # the logical negation (is *not* logical triangular !)
## but this one is:
stopifnot(all.equal(nutp, pack(!!nutp)))

也可以看看

ngeMatrixMatrix;函数t

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Triangular Dense Logical Matrices。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。