chol2inv(base)
chol2inv()所属R语言包:base
Inverse from Choleski (or QR) Decomposition
逆从Choleski或QR分解
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Invert a symmetric, positive definite square matrix from its Choleski decomposition. Equivalently, compute (X'X)^(-1) from the (R part) of the QR decomposition of X.
反转,其Choleski分解对称正定方阵。等价,计算(X'X)^(-1)(R部分)X的QR分解。
用法----------Usage----------
chol2inv(x, size = NCOL(x), LINPACK = FALSE)
参数----------Arguments----------
参数:x
a matrix. The first size columns of the upper triangle contain the Choleski decomposition of the matrix to be inverted.
一个矩阵。第一size列上三角矩阵包含Choleski分解倒置。
参数:size
the number of columns of x containing the Choleski decomposition.
x包含Choleski分解的列数。
参数:LINPACK
logical. Should LINPACK be used (for compatibility with R < 1.7.0)?
逻辑。 LINPACK性能应该被使用(与R的兼容性<1.7.0)?
Details
详情----------Details----------
This is an interface to the LAPACK routine DPOTRI and the LINPACK routine DPODI.
这是一个的LAPACK的例行DPOTRI LINPACK的例行DPODI的接口。
值----------Value----------
The inverse of the matrix whose Choleski decomposition was given.
Choleski分解矩阵的逆。
参考文献----------References----------
LINPACK Users Guide. Philadelphia: SIAM Publications.
LAPACK Users' Guide. Third Edition. SIAM. Available on-line at http://www.netlib.org/lapack/lug/lapack_lug.html.
参见----------See Also----------
chol, solve.
chol,solve。
举例----------Examples----------
cma <- chol(ma <- cbind(1, 1:3, c(1,3,7)))
ma %*% chol2inv(cma)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|