1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
\name{denseMatrix-class}
\docType{class}
\title{Virtual Class "denseMatrix" of All Dense Matrices}
\alias{denseMatrix-class}
\alias{show,denseMatrix-method}
\alias{coerce,ANY,denseMatrix-method}
\alias{coerce,denseMatrix,CsparseMatrix-method}
\alias{coerce,denseMatrix,TsparseMatrix-method}
\alias{colMeans,denseMatrix-method}
\alias{colSums,denseMatrix-method}
\alias{rowMeans,denseMatrix-method}
\alias{rowSums,denseMatrix-method}
%
\description{This is the virtual class of all dense (S4) matrices.
It is the direct superclass of
\code{\linkS4class{ddenseMatrix}},
\code{\linkS4class{ldenseMatrix}}
}
\section{Extends}{
class \code{"Matrix"} directly.
}
\section{Slots}{
%% MM :adding the slots here because "R CMD check" gave warning
%% _WHY_ was this not necessary in ./ddenseMatrix-class.Rd ?
%% or ./sparseMatrix-class.Rd ???
exactly those of its superclass \code{"Matrix"}, i.e.,
\describe{
\item{\code{factors}:}{Object of class \code{"list"} - a list
of factorizations of the matrix.}
\item{\code{Dim}:}{length 2 \code{"integer"}}
\item{\code{Dimnames}:}{\code{"list"} of length 2,}
}
%% not sufficient: \code{Dim}, and \code{Dimnames},
see \code{\linkS4class{Matrix}}.
}
%
\section{Methods}{
Use \code{\link{showMethods}(class = "denseMatrix", where =
"package:Matrix")} for an overview of methods.
Extraction (\code{"["}) methods,
see \code{\link{[-methods}}.%-> ./Xtrct-methods.Rd
}
\seealso{
Its superclass \code{\linkS4class{Matrix}}, and main subclasses,
\code{\linkS4class{ddenseMatrix}} and \code{\linkS4class{sparseMatrix}}.
}
\examples{
showClass("denseMatrix")
}
\keyword{classes}
|