Rev 3340 | Rev 3755 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{dMatrix-class}\docType{class}\alias{dMatrix-class}\alias{lMatrix-class}\alias{show,dMatrix-method}\alias{coerce,dMatrix,matrix-method}%\alias{coerce,dMatrix,dgeMatrix-method}\alias{[,dMatrix,lMatrix,missing,ANY-method}\alias{[,dMatrix,logical,missing,ANY-method}% Group methods\alias{Math2,dMatrix,numeric-method}% Math2 = round + signif, but\alias{Math2,dMatrix,missing-method}\alias{Summary,dMatrix-method}\alias{Compare,dMatrix,dMatrix-method}\alias{Compare,dMatrix,numeric-method}\alias{Compare,numeric,dMatrix-method}% for silly reasons, need these 2+3 as well:\alias{round,dMatrix,numeric-method}\alias{signif,dMatrix,numeric-method}\alias{log,dMatrix-method}\alias{gamma,dMatrix-method}\alias{lgamma,dMatrix-method}%\alias{zapsmall,dMatrix-method}%% operations with one argument from the "integer" class\alias{crossprod,dMatrix,integer-method}\alias{crossprod,integer,dMatrix-method}\alias{solve,dMatrix,integer-method}\alias{\%*\%,dMatrix,integer-method}\alias{\%*\%,integer,dMatrix-method}\title{(Virtual) Class "dMatrix" of "double" Matrices}\description{The \code{dMatrix} class is a virtual class contained by all actualclasses of numeric matrices in the \pkg{Matrix} package. Similarly,all the actual classes of logical matrices inherit from the\code{lMatrix} class.}%\section{Objects from the Class}{A virtual Class: No objects may be% created from it.%}\section{Slots}{Common to \emph{all} matrix object in the package:\describe{\item{\code{Dim}:}{Object of class \code{"integer"} - the dimensionsof the matrix - must be an integer vector with exactly twonon-negative values.}\item{\code{Dimnames}:}{list of length two; each componentcontaining NULL or a \code{\link{character}} vector lengthequal the corresponding \code{Dim} element.}}}\section{Methods}{There are (relatively simple) group methods (see, e.g., \code{\link{Arith}})\describe{\item{Arith}{\code{signature(e1 = "dMatrix", e2 = "dMatrix")}: ... }\item{Arith}{\code{signature(e1 = "dMatrix", e2 = "numeric")}: ... }\item{Arith}{\code{signature(e1 = "numeric", e2 = "dMatrix")}: ... }\item{Math}{\code{signature(x = "dMatrix")}: ... }\item{Math2}{\code{signature(x = "dMatrix", digits = "numeric")}:this group contains \code{\link{round}()} and \code{\link{signif}()}.}\item{Compare}{\code{signature(e1 = "numeric", e2 = "dMatrix")}: ... }\item{Compare}{\code{signature(e1 = "dMatrix", e2 = "numeric")}: ... }\item{Compare}{\code{signature(e1 = "dMatrix", e2 = "dMatrix")}: ... }\item{Summary}{\code{signature(x = "dMatrix")}: The \code{"Summary"}group contains the seven functions\code{\link{max}()}, \code{\link{min}()}, \code{\link{range}()},\code{\link{prod}()}, \code{\link{sum}()},\code{\link{any}()}, and \code{\link{all}()}.}}The following methods are also defined for all double matrices:\describe{\item{coerce}{\code{signature(from = "dMatrix", to = "matrix")}: ... }%\item{expm}{\code{signature(x = "dMatrix")}: computes the\emph{\dQuote{Matrix Exponential}}, see \code{\link{expm}}.}\item{zapsmall}{\code{signature(x = "dMatrix")}: ... }}}%\references{}% Martin + Doug\author{Douglas Bates \email{bates@stat.wisc.edu}}\seealso{The classes \code{\linkS4class{dgeMatrix}},\code{\linkS4class{dgCMatrix}}, and \code{\linkS4class{Matrix}}.}\examples{showClass("dMatrix")set.seed(101)round(Matrix(rnorm(28), 4,7), 2)(M <- zapsmall(Matrix(rlnorm(56, sd=10), 4,14)))table(as.logical(M == 0))}\keyword{classes}\keyword{algebra}