dsyMatrix-class {Matrix} | R Documentation |
The "dsyMatrix"
class is the class of symmetric, dense matrices
in non-packed storage and "dspMatrix"
is the class of symmetric
dense matrices in packed storage. Only the upper triangle or the
lower triangle is stored.
Objects can be created by calls of the form new("dsyMatrix", ...)
.
uplo
:Object of class "character"
. Must be
either "U", for upper triangular, and "L", for lower triangular.
x
:Object of class "numeric"
. The numeric
values that constitute the matrix, stored in column-major order.
Dim
,Dimnames
:The dimension (a length-2
"integer"
) and corresponding names (or NULL
), see the
Matrix
.
factors
:Object of class "list"
. A named
list of factorizations that have been computed for the matrix.
"dsyMatrix"
extends class "dgeMatrix"
, directly, whereas
"dspMatrix"
extends class "ddenseMatrix"
, directly.
Both extend class "symmetricMatrix"
, directly,
and class "Matrix"
and others, indirectly, use
showClass("dsyMatrix")
, e.g., for details.
signature(from = "ddenseMatrix", to = "dgeMatrix")
signature(from = "dspMatrix", to = "matrix")
signature(from = "dsyMatrix", to = "matrix")
signature(from = "dsyMatrix", to = "dspMatrix")
signature(from = "dspMatrix", to = "dsyMatrix")
signature(x = "dspMatrix", type = "character")
signature(x = "dsyMatrix", type = "character")
signature(x = "dspMatrix", type = "missing")
signature(x = "dsyMatrix", type = "missing")
signature(a = "dspMatrix", b = "missing")
signature(a = "dsyMatrix", b = "missing")
signature(a = "dspMatrix", b = "matrix")
signature(a = "dsyMatrix", b = "matrix")
signature(x = "dsyMatrix")
: Transpose; swaps from
upper triangular to lower triangular storage, i.e., the uplo slot
from "U"
to "L"
or vice versa, the same as for all
symmetric matrices.
Classes dgeMatrix
and Matrix
;
solve
, norm
, rcond
,
t
## Only upper triangular part matters (when uplo == "U" as per default) (sy2 <- new("dsyMatrix", Dim = as.integer(c(2,2)), x = c(14, NA,32,77))) str(t(sy2)) # uplo = "L", and the lower tri. (i.e. NA is replaced). chol(sy2) #-> "Cholesky" matrix ## Coercing to dpoMatrix gives invalid object: sy3 <- new("dsyMatrix", Dim = as.integer(c(2,2)), x = c(14, -1, 2, -7)) try(as(sy3, "dpoMatrix")) # -> error: not positive definite