Cholesky(A, perm, LDL, super, ...)
A
.
Default is TRUE
.L
is a unit lower triangular matrix.
The alternative is LL' where L
is lower triangular with
arbitrary diagonal elements. Default is FALSE
."CHMfactor"
, i.e., "CHMfactor "
showMethods("Cholesky")
to list all
the methods for the Cholesky
generic. The method for class
of sparse matrices
is based on functions from the CHOLMOD library.
Timothy A. Davis (2006)
Direct Methods for Sparse Linear Systems, SIAM Series
CHMfactor
and dsCMatrix
and function expand
. Note that chol()
returns matrices (inheriting from
"
) whereas Cholesky()
returns a
"
object.
data(KNex)
mtm <- with(KNex, crossprod(mm))
str(Cholesky(mtm))
str(Cholesky(mtm, super = TRUE))
Run the code above in your browser using DataLab