R語言
mat2triplet
位於 Matrix
包(package)。 說明
來自一個R對象強製"TsparseMatrix"
,通常是一個(稀疏)矩陣,產生它的三元組表示,在二進製又名模式的情況下可能會崩潰為“Duplet”,例如"nMatrix"
對象。
用法
mat2triplet(x, uniqT = FALSE)
參數
x |
任何R對象為 |
uniqT |
|
值
list
,通常包含三個組件,
i |
|
i |
|
x |
|
請注意,條目的 order
是通過強製 "TsparseMatrix"
確定的,因此通常會增加 j
(並在 j
的關係內增加 i
)。
注意
mat2triplet()
實用程序被創建為 summary(<sparseMatrix>)
的更高效、更可預測的替代品。 UseRs 錯誤地期望後者返回包含 i
和 j
列的數據幀,但這對於 "diagonalMatrix"
來說是錯誤的。
例子
mat2triplet # simple definition
i <- c(1,3:8); j <- c(2,9,6:10); x <- 7 * (1:7)
(Ax <- sparseMatrix(i, j, x = x)) ## 8 x 10 "dgCMatrix"
str(trA <- mat2triplet(Ax))
stopifnot(i == sort(trA$i), sort(j) == trA$j, x == sort(trA$x))
D <- Diagonal(x=4:2)
summary(D)
str(mat2triplet(D))
也可以看看
"sparseMatrix"
、 summary,sparseMatrix-method
的 summary()
方法。
mat2triplet()
在概念上是 spMatrix
和(一種情況)sparseMatrix
的反函數。
相關用法
- R matmult-methods 矩陣(叉)積(轉置)
- 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 CHMfactor-class 稀疏 Cholesky 分解
- R symmpart-methods 矩陣的對稱部分和偏斜(對稱)部分
- R sparseMatrix 從非零項構建一般稀疏矩陣
- R dgCMatrix-class 壓縮、稀疏、麵向列的數值矩陣
- R Cholesky-methods Cholesky 分解方法
- R Subassign-methods “[<-”的方法 - 分配給“矩陣”的子集
- R ldenseMatrix-class 密集邏輯矩陣的虛擬類“ldenseMatrix”
- R norm-methods 矩陣範數
- R ngeMatrix-class 一般密集非零模式矩陣的“ngeMatrix”類
- R CAex 阿爾伯斯的示例矩陣與“困難”特征分解
- R diagonalMatrix-class 對角矩陣的“diagonalMatrix”類
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Map Matrix to its Triplet Representation。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。