sscChol-class {Matrix} | R Documentation |
The class of Cholesky decompositions of symmetric, sparse
column matrices from the "sscMatrix"
class.
Objects can be created by calls of the form new("sscChol", ...)
but are more commonly created from chol
applied to an
sscMatrix
object.
perm
:"integer"
giving the
permutation of the rows and columns chosen to minimize fill-in.
If pivoting has not been applied this will be an integer vector of
length 0.iperm
:"integer"
- the inverse
permutation to the perm
slot.diag
:"tscMatrix"
class. It is always "N"
for this class.uplo
:"U"
or "u"
) or the lower triangle
("L"
or "l"
) is stored. At present only the lower
triangle form is allowed.p
:"integer"
of pointers, one
for each column, to the initial (zero-based) index of elements in
the column.i
:"integer"
of length nnzero
(number of non-zero elements). These are the row numbers for
each non-zero element in the matrix.x
:"numeric"
- the non-zero
elements of the matrix.factorization
:"list"
- a list
of factorizations of the matrix. Dim
:"integer"
- the dimensions
of the matrix - must be an integer vector with exactly two
non-negative values.
Class "tscMatrix"
, directly.
Class "cscMatrix"
, by class "tscMatrix"
.
No methods defined with class "sscChol" in the signature.
data(mm) xpx = crossprod(mm) str(xpx) str(chol(xpx))