
Last chance! 50% off unlimited learning
Sale ends in
"LU"
class is the class of LU decompositions of
real matrices.new("LU", ...)
.
More commonly the objects are created explicitly from calls of the form
lu(mm)
where mm
is an object that inherits from the
"dgeMatrix"
class or as a side-effect of other functions applied
to "dgeMatrix"
objects.dgeMatrix-class
, lu
, expand
mm <- Matrix(round(rnorm(9),2), nrow = 3, ncol = 3)
mm
str(lum <- lu(mm))
elu <- expand(lum)
elu
elu$L %*% elu$U
Run the code above in your browser using DataLab