This function is generic (see Methods); method functions can be written to handle specific classes of data. Classes which already have methods for this function include: "lu.Matrix", "lu.Hermitian", "qr.Matrix".
facmul(x, factor, y, transpose = F, left = T, ...)
library(Matrix) x <- Matrix(rnorm(9), 3, 3) qrx <- qr(x) # QR factorization of x y <- rnorm(3) facmul( qr(x), factor = "Q", y) # form Q y