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
|
\name{dsparseMatrix-class}
\docType{class}
\alias{dsparseMatrix-class}
% Group
\alias{Summary,dsparseMatrix-method}
\alias{Arith,dsparseMatrix,logical-method}
\alias{Arith,dsparseMatrix,numeric-method}
\alias{Arith,logical,dsparseMatrix-method}
\alias{Arith,numeric,dsparseMatrix-method}
%
\alias{\%*\%,ddenseMatrix,dsparseMatrix-method}
\alias{\%*\%,dgeMatrix,dsparseMatrix-method}
\alias{\%*\%,dsparseMatrix,ddenseMatrix-method}
\alias{\%*\%,dsparseMatrix,dgeMatrix-method}
\alias{crossprod,ddenseMatrix,dsparseMatrix-method}
\alias{crossprod,dgeMatrix,dsparseMatrix-method}
\alias{crossprod,dsparseMatrix,ddenseMatrix-method}
\alias{crossprod,dsparseMatrix,dgeMatrix-method}
\alias{lu,dsparseMatrix-method}
%
\title{Virtual Class "dsparseMatrix" of Numeric Sparse Matrices}
\description{The Class \code{"dsparseMatrix"} is the virtual (super) class of
all numeric sparse matrices.
}
\section{Slots}{
\describe{
\item{\code{Dim}:}{the matrix dimension, see class \code{"\linkS4class{Matrix}"}.}
\item{\code{Dimnames}:}{see the \code{"Matrix"} class.}
\item{\code{x}:}{a \code{\link{numeric}} vector containing the
(non-zero) matrix entries.}
}
}
\section{Extends}{
Class \code{"dMatrix"} and \code{"sparseMatrix"}, directly.\cr
Class \code{"Matrix"}, by the above classes.
}
% \section{Methods}{
% No methods defined with class "dsparseMatrix" in the signature.
% }
%%\author{Martin}
\seealso{
the documentation of the (non virtual) sub classes, see
\code{showClass("dsparseMatrix")}; in particular,
\linkS4class{dgTMatrix}, \linkS4class{dgCMatrix}, and
\linkS4class{dgRMatrix}.
}
\examples{
showClass("dsparseMatrix")
}
\keyword{classes}
|