Rev 3383 | Rev 3520 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{dtrMatrix-class}\docType{class}\alias{\%*\%,dtrMatrix,dtrMatrix-method}\alias{\%*\%,dgeMatrix,dtrMatrix-method}\alias{\%*\%,dtrMatrix,dgeMatrix-method}\alias{\%*\%,dtrMatrix,matrix-method}\alias{\%*\%,matrix,dtrMatrix-method}\alias{coerce,dgeMatrix,dtrMatrix-method}% or rather setIs?\alias{coerce,dtrMatrix,dtpMatrix-method}\alias{coerce,dtrMatrix,ltrMatrix-method}\alias{coerce,dtrMatrix,matrix-method}\alias{coerce,matrix,dtrMatrix-method}\alias{crossprod,dtrMatrix,missing-method}\alias{determinant,dtrMatrix,logical-method}\alias{determinant,dtrMatrix,missing-method}\alias{norm,dtrMatrix,character-method}\alias{norm,dtrMatrix,missing-method}\alias{rcond,dtrMatrix,character-method}\alias{rcond,dtrMatrix,missing-method}\alias{show,dtrMatrix-method}\alias{solve,dtrMatrix,dgeMatrix-method}\alias{solve,dtrMatrix,matrix-method}\alias{solve,dtrMatrix,missing-method}\alias{t,dtrMatrix-method}\alias{dtrMatrix-class}\title{Triangular, dense, numeric matrices}\description{The \code{"dtrMatrix"} class is the class of triangular, dense,numeric matrices in nonpacked storage. The \code{"dtpMatrix"} classis the same except in packed storage.}\section{Objects from the Class}{Objects can be created by calls of the form \code{new("dtrMatrix", ...)}.}\section{Slots}{\describe{\item{\code{uplo}:}{Object of class \code{"character"}. Must beeither "U", for upper triangular, and "L", for lower triangular.}\item{\code{diag}:}{Object of class \code{"character"}. Must beeither \code{"U"}, for unit triangular (diagonal is all ones), or\code{"N"}; see \code{\linkS4class{triangularMatrix}}.}\item{\code{x}:}{Object of class \code{"numeric"}. The numericvalues that constitute the matrix, stored in column-major order.}\item{\code{Dim}:}{Object of class \code{"integer"}. The dimensionsof the matrix which must be a two-element vector of non-negativeintegers.}}}\section{Extends}{Class \code{"ddenseMatrix"}, directly.Class \code{"triangularMatrix"}, directly.Class \code{"Matrix"} and others, by class \code{"ddenseMatrix"}.}\section{Methods}{\describe{\item{\%*\%}{\code{signature(x = "dtrMatrix", y = "matrix")} and othersignatures (use \code{showMethods("\%*\%", class="dtrMatrix")}):matrix multiplication.}\item{coerce}{\code{signature(from = "dgeMatrix", to = "dtrMatrix")}}\item{coerce}{\code{signature(from = "dtrMatrix", to = "matrix")}}\item{coerce}{\code{signature(from = "dtrMatrix", to = "ltrMatrix")}}\item{coerce}{\code{signature(from = "dtrMatrix", to = "matrix")}}\item{coerce}{\code{signature(from = "matrix", to = "dtrMatrix")}}\item{norm}{\code{signature(x = "dtrMatrix", type = "character")}}\item{rcond}{\code{signature(x = "dtrMatrix", type = "character")}}\item{solve}{\code{signature(a = "dtrMatrix", b = "missing")}}\item{solve}{\code{signature(a = "dtrMatrix", b = "matrix")}}}}%\references{}%\author{}\seealso{Classes \code{\linkS4class{ddenseMatrix}}, \code{\linkS4class{dtpMatrix}},\code{\linkS4class{triangularMatrix}}}\examples{%% this is used from ./dtpMatrix-class.Rd (change with care!)(m <- rbind(2:3, 0:-1))(M <- as(m, "dgeMatrix"))(T <- as(M, "dtrMatrix")) ## upper triangular is default(T2 <- as(t(M), "dtrMatrix"))stopifnot(T@uplo == "U", T2@uplo == "L", identical(T2, t(T)))}\keyword{classes}