https://github.com/cran/Matrix
Raw File
Tip revision: d48c7564aa3a9da931870fc54265f7c133f17caf authored by Douglas Bates on 22 July 2002, 00:00:00 UTC
version 0.3-19
Tip revision: d48c756
lu.R
lu.Matrix <- function(x, norm.comp = c(one = TRUE, infinity = TRUE), ...)
{
    .Call("R_LapackPP_lu", x, norm.comp, PACKAGE="Matrix")
}
back to top