Rev 4720 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{MatrixFactorization-class}\alias{MatrixFactorization-class}\docType{class}\title{Class "MatrixFactorization" of Matrix Factorizations}%\alias{dim,MatrixFactorization-method}\alias{expand,MatrixFactorization-method}\alias{show,MatrixFactorization-method}\alias{solve,MatrixFactorization,numeric-method}\alias{solve,MatrixFactorization,ANY-method}\alias{solve,MatrixFactorization,missing-method}\description{The class \code{"MatrixFactorization"} is the virtual (super) class of(potentially) all matrix factorizations of matrices from package\pkg{Matrix}.}\section{Objects from the Class}{A virtual Class: No objects may becreated from it.}\section{Slots}{\describe{\item{\code{Dim}:}{Object of class \code{"integer"} - the dimensionsof the original matrix - must be an integer vector with exactly twonon-negative values.}}}\section{Methods}{\describe{\item{dim}{\code{(x)} simply returns \code{x@Dim}, see above.}\item{expand}{\code{signature(x = "MatrixFactorization")}: this hasnot been implemented yet for all matrix factorizations. It shouldreturn a list whose components are matrices which when multipliedreturn the original \code{\linkS4class{Matrix}} object.}\item{show}{\code{signature(object = "MatrixFactorization")}: simpleprinting, see \code{\link{show}}.}\item{solve}{\code{signature(a = "MatrixFactorization", b= .)}:solve \eqn{A x = b} for \eqn{x}; has not been implemented forall factorizations, but e.g., for \code{\linkS4class{CHMfactor}},see there.}}}\seealso{classes inheriting from \code{"MatrixFactorization"}, such as\code{\linkS4class{CHMfactor}},\code{\linkS4class{LU}}, and\code{\linkS4class{sparseQR}}.}\examples{showClass("MatrixFactorization")}\keyword{classes}