Blame | Last modification | View Log | Download | RSS feed
\name{cscMatrix-class}\docType{class}\alias{cscMatrix-class}\alias{coerce,matrix,cscMatrix-method}\alias{coerce,cscMatrix,tripletMatrix-method}\alias{coerce,cscMatrix,matrix-method}\alias{coerce,cscMatrix,geMatrix-method}\alias{coerce,tripletMatrix,cscMatrix-method}\alias{crossprod,cscMatrix,missing-method}\alias{crossprod,cscMatrix,matrix-method}\alias{crossprod,cscMatrix,numeric-method}\alias{diag,cscMatrix-method}\alias{dim,cscMatrix-method}\alias{image,cscMatrix-method}\alias{t,cscMatrix-method}\title{Class "cscMatrix" compressed, sparse, column Matrix}\description{The \code{cscMatrix} class is a class of sparse matrices inthe compressed, sparse, column-oriented format. In thisimplementation the non-zero elements in the columns are sorted intoincreasing row order.}\section{Objects from the Class}{Objects can be created by calls of the form \code{new("cscMatrix", ...)}.}\section{Slots}{\describe{\item{\code{p}:}{Object of class \code{"integer"} of pointers, onefor each column, to the initial (zero-based) index of elements inthe column.}\item{\code{i}:}{Object of class \code{"integer"} of length nnzero(number of non-zero elements). These are the row numbers foreach non-zero element in the matrix.}\item{\code{x}:}{Object of class \code{"numeric"} - the non-zeroelements of the matrix.}\item{\code{nrow}:}{Object of class \code{"integer"} - the number ofrows in the matrix.}}}\section{Methods}{\describe{\item{coerce}{\code{signature(from = "matrix", to = "cscMatrix")}: ... }\item{coerce}{\code{signature(from = "cscMatrix", to = "tripletMatrix")}: ... }\item{coerce}{\code{signature(from = "cscMatrix", to = "matrix")}: ... }\item{coerce}{\code{signature(from = "tripletMatrix", to = "cscMatrix")}: ... }\item{crossprod}{\code{signature(x = "cscMatrix", y = "missing")}: ... }\item{crossprod}{\code{signature(x = "cscMatrix", y = "matrix")}: ... }\item{crossprod}{\code{signature(x = "cscMatrix", y = "numeric")}: ... }\item{diag}{\code{signature(x = "cscMatrix")}: ... }\item{dim}{\code{signature(x = "cscMatrix")}: ... }\item{image}{\code{signature(x = "cscMatrix")}: ... }}}%\references{}%\author{}%\note{}\seealso{\code{\link{sscMatrix-class}}, \code{\link{tscMatrix-class}}}%\examples{}\keyword{classes}\keyword{algebra}