sparseLU-class
位於 Matrix
包(package)。 說明
sparseLU
是 實數矩陣 的稀疏、行和 column-pivoted LU 分解類,具有一般形式
或(等效地)
其中 和 是置換矩陣, 是單位下三角矩陣, 是上三角矩陣。
插槽
Dim
,Dimnames
-
從虛擬類
MatrixFactorization
繼承。 L
-
類
dtCMatrix
的對象,單位下三角 因子。 U
-
類
dtCMatrix
的對象,即上三角 因子。 p
,q
-
長度從 0 開始的整數向量
Dim[1]
,指定應用於分解矩陣的行和列的排列。q
長度為 0 的值是有效的並且等價於恒等排列,意味著沒有列旋轉。使用R語法,矩陣 正是A[p+1, q+1]
(A[p+1, ]
當q
長度為 0)。
擴展
直接類 LU
。類 MatrixFactorization
,按類 LU
,距離 2。
實例化
對象可以通過 new("sparseLU", ...)
形式的調用直接生成,但它們更通常作為繼承自 sparseMatrix
(通常是 dgCMatrix
)的 x
的 lu(x)
值獲得。
方法
determinant
-
signature(from = "sparseLU", logarithm = "logical")
:計算因式分解矩陣 的行列式或其對數。 expand
-
signature(x = "sparseLU")
:參見expand-methods
。 expand1
-
signature(x = "sparseLU")
:參見expand1-methods
。 expand2
-
signature(x = "sparseLU")
:參見expand2-methods
。 solve
-
signature(a = "sparseLU", b = .)
:參見solve-methods
。
例子
showClass("sparseLU")
set.seed(2)
A <- as(readMM(system.file("external", "pores_1.mtx", package = "Matrix")),
"CsparseMatrix")
(n <- A@Dim[1L])
## With dimnames, to see that they are propagated :
dimnames(A) <- dn <- list(paste0("r", seq_len(n)),
paste0("c", seq_len(n)))
(lu.A <- lu(A))
str(e.lu.A <- expand2(lu.A), max.level = 2L)
ae1 <- function(a, b, ...) all.equal(as(a, "matrix"), as(b, "matrix"), ...)
ae2 <- function(a, b, ...) ae1(unname(a), unname(b), ...)
## A ~ P1' L U P2' in floating point
stopifnot(exprs = {
identical(names(e.lu.A), c("P1.", "L", "U", "P2."))
identical(e.lu.A[["P1."]],
new("pMatrix", Dim = c(n, n), Dimnames = c(dn[1L], list(NULL)),
margin = 1L, perm = invertPerm(lu.A@p, 0L, 1L)))
identical(e.lu.A[["P2."]],
new("pMatrix", Dim = c(n, n), Dimnames = c(list(NULL), dn[2L]),
margin = 2L, perm = invertPerm(lu.A@q, 0L, 1L)))
identical(e.lu.A[["L"]], lu.A@L)
identical(e.lu.A[["U"]], lu.A@U)
ae1(A, with(e.lu.A, P1. %*% L %*% U %*% P2.))
ae2(A[lu.A@p + 1L, lu.A@q + 1L], with(e.lu.A, L %*% U))
})
## Factorization handled as factorized matrix
b <- rnorm(n)
stopifnot(identical(det(A), det(lu.A)),
identical(solve(A, b), solve(lu.A, b)))
參考
Davis, T. A. (2006). Direct methods for sparse linear systems. Society for Industrial and Applied Mathematics. doi:10.1137/1.9780898718881
Golub, G. H., & Van Loan, C. F. (2013). Matrix computations (4th ed.). Johns Hopkins University Press. doi:10.56021/9781421407944
也可以看看
用於密集 LU 分解的類 denseLU
。
相關用法
- R sparseMatrix 從非零項構建一般稀疏矩陣
- R sparseQR-class 稀疏 QR 分解
- R sparse.model.matrix 構造稀疏設計/模型矩陣
- R sparseVector-class 稀疏向量類
- R sparseMatrix-class 虛擬類“sparseMatrix”——稀疏矩陣之母
- R sparseVector 從非零條目構造稀疏向量
- R spMatrix 三元組的稀疏矩陣構造函數
- R solve-methods 函數求解矩陣包中的方法
- R symmetricMatrix-class 包矩陣中對稱矩陣的虛擬類
- R symmpart-methods 矩陣的對稱部分和偏斜(對稱)部分
- R dtrMatrix-class 三角形稠密數值矩陣
- R facmul-methods 乘以矩陣因式分解的因數
- R updown-methods 更新和降級稀疏 Cholesky 分解
- R bdiag 構建分塊對角矩陣
- R printSpMatrix 靈活格式化和打印稀疏矩陣
- R all.equal-methods 函數 all.equal() 的矩陣封裝方法
- R boolmatmult-methods 布爾算術矩陣乘積:%&% 和方法
- R ltrMatrix-class 三角密集邏輯矩陣
- R Hilbert 生成希爾伯特矩陣
- R nearPD 最近正定矩陣
- R lsyMatrix-class 對稱密集邏輯矩陣
- R CHMfactor-class 稀疏 Cholesky 分解
- R dgCMatrix-class 壓縮、稀疏、麵向列的數值矩陣
- R Cholesky-methods Cholesky 分解方法
- R Subassign-methods “[<-”的方法 - 分配給“矩陣”的子集
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Sparse LU Factorizations。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。