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


R nMatrix-class 非零模式矩阵的“nMatrix”类


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

说明

nMatrix类是所有的虚拟“mother”类non-zero图案(或者简单地啪嗒啪嗒n) 矩阵中Matrix包。

插槽

包中所有矩阵对象共有的:

Dim

"integer" 类的对象(矩阵的维度)必须是具有两个非负值的整数向量。

Dimnames

长度为二的列表;每个包含 NULL 或 character 向量长度的分量等于相应的 Dim 元素。

方法

强制

signature(from = "matrix", to = "nMatrix") :请注意,这些强制(必须)将 NA 强制为非零,因此从概念上讲是 TRUE 。当 sparseMatrix 对象被强制为 "nMatrix" 并因此强制为 nsparseMatrix 时,这一点尤其重要。

— — —

其他方法包含组方法,例如

行动

signature(e1 = "nMatrix", e2 = "....") , ...

阿里斯

signature(e1 = "nMatrix", e2 = "....") , ...

比较

signature(e1 = "nMatrix", e2 = "....") , ...

逻辑

signature(e1 = "nMatrix", e2 = "....") , ...

概括

signature(x = "nMatrix", "....") , ...

例子

getClass("nMatrix")

L3 <- Matrix(upper.tri(diag(3)))
L3 # an "ltCMatrix"
as(L3, "nMatrix") # -> ntC*

## similar, not using Matrix()
as(upper.tri(diag(3)), "nMatrix")# currently "ngTMatrix"

也可以看看

lMatrixnsparseMatrix 和母类 Matrix

相关用法


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