## S3 method for class 'Matrix':
lu(x, norm.comp = T, \dots)
solve
is going to eventually be applied
to the factorization with conditx
is returned as an object of class
"lu.Matrix"
, which is a list with components "l"
, a unit
lower triangular matrix, "u"
, an upper triangular matrix, and
"permutation"
, a row permutation matrix. The one or infinity
norm is included as an attribute, if requested.
and/or infinity norms of the matrix if requested (used for condition
estimation).x <- Matrix((1:16)^2, nrow = 4, ncol = 4)
lu.Matrix(x)
Run the code above in your browser using DataLab