dtrMatrix-class {Matrix}R Documentation

Triangular, dense, numeric matrices

Description

The "dtrMatrix" class is the class of triangular, dense, numeric matrices in nonpacked storage. The "dtpMatrix" class is the same except in packed storage.

Objects from the Class

Objects can be created by calls of the form new("dtrMatrix", ...).

Slots

uplo:
Object of class "character". Must be either "U", for upper triangular, and "L", for lower triangular.
diag:
Object of class "character". Must be either "U", for unit triangular (diagonal is all ones), or "N" for non-unit. The implicit diagonal elements are not explicitly stored when diag is "U".
x:
Object of class "numeric". The numeric values that constitute the matrix, stored in column-major order.
Dim:
Object of class "integer". The dimensions of the matrix which must be a two-element vector of non-negative integers.
rcond:
Object of class "numeric". A named numeric vector of reciprocal condition numbers in either the 1-norm "O" or the infinity norm "I".
factors:
Object of class "list". A named list of factorizations that have been computed for the matrix.

Extends

Class "dgeMatrix", directly. Class "Matrix", by class "dgeMatrix".

Methods

%*%
signature(x = "dtrMatrix", y = "matrix") and other signatures (use showMethods("%*%", class="dtrMatrix")): matrix multiplication.
coerce
signature(from = "dtrMatrix", to = "dgeMatrix")
coerce
signature(from = "dtrMatrix", to = "dgeMatrix")
coerce
signature(from = "dtrMatrix", to = "matrix")
coerce
signature(from = "dtrMatrix", to = "dtpMatrix")
norm
signature(x = "dtrMatrix", type = "character")
rcond
signature(x = "dtrMatrix", type = "character")
solve
signature(a = "dtrMatrix", b = "missing")
solve
signature(a = "dtrMatrix", b = "matrix")

See Also

dgeMatrix-class, dtpMatrix-class, Matrix-class


[Package Matrix version 0.95-10 Index]