
Invert a symmetric, positive definite square matrix from its Choleski
decomposition. Equivalently, compute
chol2inv(x, size = NCOL(x), LINPACK = FALSE)
a matrix. The first size
columns of the upper triangle
contain the Choleski decomposition of the matrix to be inverted.
the number of columns of x
containing the
Choleski decomposition.
logical. Defunct and ignored (with a warning for true value).
The inverse of the matrix whose Choleski decomposition was given.
Unsuccessful results from the underlying LAPACK code will result in an error giving a positive error code: these can only be interpreted by detailed study of the FORTRAN code.
Anderson. E. and ten others (1999) LAPACK Users' Guide. Third Edition. SIAM. Available on-line at http://www.netlib.org/lapack/lug/lapack_lug.html.
Dongarra, J. J., Bunch, J. R., Moler, C. B. and Stewart, G. W. (1978) LINPACK Users Guide. Philadelphia: SIAM Publications.
# NOT RUN {
cma <- chol(ma <- cbind(1, 1:3, c(1,3,7)))
ma %*% chol2inv(cma)
# }
Run the code above in your browser using DataLab