CsparseMatrix-class
位于 Matrix
包(package)。 说明
"CsparseMatrix"
类是以排序压缩 column-oriented 形式编码的所有稀疏矩阵的虚拟类。由于它是一个虚拟类,因此不能从中创建任何对象。有关其子类,请参阅showClass("CsparseMatrix")
。
插槽
i
:-
类
"integer"
的对象,长度为 nnzero(非零元素的数量)。这些是矩阵中每个非零元素的从 0 开始的行号,即i
必须位于0:(nrow(.)-1)
中。 p
:-
integer
向量,用于提供指向列中元素的初始(从零开始)索引的指针(每列一个)。.@p
的长度为ncol(.) + 1
,其中包含p[1] == 0
和p[length(p)] == nnzero
,因此实际上diff(.@p)
是每列的非零元素的数量。换句话说,
m@p[1:ncol(m)]
包含m@x
中作为m
相应列中的第一个元素的那些元素的索引。 Dim
、Dimnames
:-
从超类继承,请参阅
sparseMatrix
类。
扩展
直接类 "sparseMatrix"
。类 "Matrix"
,按类 "sparseMatrix"
。
方法
矩阵乘积 %*%
、 crossprod()
和 tcrossprod()
、多种 solve
方法以及其他可用的矩阵方法:
- 阿里斯
-
signature(e1 = "CsparseMatrix", e2 = "numeric")
:... - 阿里斯
-
signature(e1 = "numeric", e2 = "CsparseMatrix")
:... - 数学
-
signature(x = "CsparseMatrix")
:... - 乐队
-
signature(x = "CsparseMatrix")
:... - -
-
signature(e1 = "CsparseMatrix", e2 = "numeric")
:... - -
-
signature(e1 = "numeric", e2 = "CsparseMatrix")
:... - +
-
signature(e1 = "CsparseMatrix", e2 = "numeric")
:... - +
-
signature(e1 = "numeric", e2 = "CsparseMatrix")
:... - 强制
-
signature(from = "CsparseMatrix", to = "TsparseMatrix")
:... - 强制
-
signature(from = "CsparseMatrix", to = "denseMatrix")
:... - 强制
-
signature(from = "CsparseMatrix", to = "matrix")
:... - 强制
-
signature(from = "TsparseMatrix", to = "CsparseMatrix")
:... - 强制
-
signature(from = "denseMatrix", to = "CsparseMatrix")
:... - 诊断
-
signature(x = "CsparseMatrix")
:... - 伽玛
-
signature(x = "CsparseMatrix")
:... - 伽玛
-
signature(x = "CsparseMatrix")
:... - 日志
-
signature(x = "CsparseMatrix")
:... - t
-
signature(x = "CsparseMatrix")
:... - 特里尔
-
signature(x = "CsparseMatrix")
:... - 特里乌
-
signature(x = "CsparseMatrix")
:...
注意
所有类延长CsparseMatrix
具有共同的有效性(参见validObject
)检查函数。该函数还检查i
每列包含递增行号的槽。
在早期版本中Matrix
(<= 0.999375-16
),validObject
必要时自动重新排序条目,因此new()
稍微排列的调用i
和x
插槽有效,如new(...)
(和槽参数)自动检查有效性。
现在,您必须使用sparseMatrix
来实现相同的函数,或者知道如何使用.validateCsparse()
来实现相同的函数。
例子
getClass("CsparseMatrix")
## The common validity check function (based on C code):
getValidity(getClass("CsparseMatrix"))
也可以看看
colSums
、 kronecker
和其他具有自己的帮助页面的此类方法。
此外,超类 CsparseMatrix
、sparseMatrix
以及例如类 dgCMatrix
用于链接到其他类。
相关用法
- R CHMfactor-class 稀疏 Cholesky 分解
- R Cholesky-methods Cholesky 分解方法
- R CAex 阿尔伯斯的示例矩阵与“困难”特征分解
- R Cholesky-class 密集 Cholesky 分解
- R dtrMatrix-class 三角形稠密数值矩阵
- R facmul-methods 乘以矩阵因式分解的因数
- R solve-methods 函数求解矩阵包中的方法
- R updown-methods 更新和降级稀疏 Cholesky 分解
- R bdiag 构建分块对角矩阵
- R printSpMatrix 灵活格式化和打印稀疏矩阵
- R symmetricMatrix-class 包矩阵中对称矩阵的虚拟类
- R all.equal-methods 函数 all.equal() 的矩阵封装方法
- R boolmatmult-methods 布尔算术矩阵乘积:%&% 和方法
- R ltrMatrix-class 三角密集逻辑矩阵
- R Hilbert 生成希尔伯特矩阵
- R nearPD 最近正定矩阵
- R lsyMatrix-class 对称密集逻辑矩阵
- R symmpart-methods 矩阵的对称部分和偏斜(对称)部分
- R sparseMatrix 从非零项构建一般稀疏矩阵
- R dgCMatrix-class 压缩、稀疏、面向列的数值矩阵
- R Subassign-methods “[<-”的方法 - 分配给“矩阵”的子集
- R ldenseMatrix-class 密集逻辑矩阵的虚拟类“ldenseMatrix”
- R norm-methods 矩阵范数
- R ngeMatrix-class 一般密集非零模式矩阵的“ngeMatrix”类
- R diagonalMatrix-class 对角矩阵的“diagonalMatrix”类
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Class "CsparseMatrix" of Sparse Matrices in Column-compressed Form。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。