LU-class
位于 Matrix
包(package)。 说明
denseLU
是 实数矩阵 的稠密类 row-pivoted LU 分解,具有一般形式
或(等效地)
其中 是 置换矩阵, 是 单位下梯形矩阵, 是 上梯形矩阵。如果 ,则因子 和 是三角形的。
插槽
Dim
,Dimnames
-
从虚拟类
MatrixFactorization
继承。 x
-
长度为
prod(Dim)
的数值向量,以打包格式存储三角形 和 因子。表示的细节由 LAPACK 例程dgetrf
的手册指定。 perm
-
长度为
min(Dim)
的整数向量,指定排列 作为转置的乘积。可以得到对应的排列向量为asPerm(perm)
。
扩展
直接类 LU
。类 MatrixFactorization
,按类 LU
,距离 2。
实例化
对象可以通过 new("denseLU", ...)
形式的调用直接生成,但它们更通常作为继承自 denseMatrix
(通常是 dgeMatrix
)的 x
的 lu(x)
值获得。
方法
coerce
-
signature(from = "denseLU", to = "dgeMatrix")
:返回dgeMatrix
,其维度为分解矩阵 ,等于对角线下方的 以及对角线上方和上方的 。 determinant
-
signature(from = "denseLU", logarithm = "logical")
:计算因式分解矩阵 的行列式或其对数。 expand
-
signature(x = "denseLU")
:参见expand-methods
。 expand1
-
signature(x = "denseLU")
:参见expand1-methods
。 expand2
-
signature(x = "denseLU")
:参见expand2-methods
。 solve
-
signature(a = "denseLU", b = "missing")
:参见solve-methods
。
例子
showClass("denseLU")
set.seed(1)
n <- 3L
(A <- Matrix(round(rnorm(n * n), 2L), n, n))
## 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)
## Underlying LAPACK representation
(m.lu.A <- as(lu.A, "dgeMatrix")) # which is L and U interlaced
stopifnot(identical(as(m.lu.A, "matrix"), `dim<-`(lu.A@x, lu.A@Dim)))
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 in floating point
stopifnot(exprs = {
identical(names(e.lu.A), c("P1.", "L", "U"))
identical(e.lu.A[["P1."]],
new( "pMatrix", Dim = c(n, n), Dimnames = c(dn[1L], list(NULL)),
margin = 1L, perm = invertPerm(asPerm(lu.A@perm))))
identical(e.lu.A[["L"]],
new("dtrMatrix", Dim = c(n, n), Dimnames = list(NULL, NULL),
uplo = "L", diag = "U", x = lu.A@x))
identical(e.lu.A[["U"]],
new("dtrMatrix", Dim = c(n, n), Dimnames = c(list(NULL), dn[2L]),
uplo = "U", diag = "N", x = lu.A@x))
ae1(A, with(e.lu.A, P1. %*% L %*% U))
ae2(A[asPerm(lu.A@perm), ], 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)))
参考
The LAPACK source code, including documentation; see https://netlib.org/lapack/double/dgetrf.f.
Golub, G. H., & Van Loan, C. F. (2013). Matrix computations (4th ed.). Johns Hopkins University Press. doi:10.56021/9781421407944
也可以看看
用于稀疏 LU 分解的类 sparseLU
。
相关用法
- 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 matmult-methods 矩阵(叉)积(转置)
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Dense LU Factorizations。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。