
Last chance! 50% off unlimited learning
Sale ends in
"Cholesky"
class is the class of Cholesky
decomposition of a positive-semidefinite, real matricesnew("Cholesky", ...)
or by calls of the form chol(pm)
where pm
inherits from
the "poMatrix"
class or as a side-effect of other functions
applied to "poMatrix"
objects."trMatrix"
, directly.
Class "geMatrix"
, by class "trMatrix"
.
Class "Matrix"
, by class "trMatrix"
.trMatrix-class
, chol
, poMatrix-class
print(pm <- crossprod(Matrix(rnorm(18), nrow = 6, ncol = 3)))
print(ch <- chol(pm))
if (toupper(ch@uplo) == "U") crossprod(ch)
Run the code above in your browser using DataLab