chol: Cholesky decomposition of structured sparse matrices

Description Usage Arguments Note Examples

Description

Cholesky decomposition of structured sparse matrices

Usage

1
2
3
4
5
6
7
8
## S4 method for signature 'strucMatrix'
chol(x, ...)

## S4 method for signature 'strucMatrixOneOffDiag'
chol(x, ...)

## S4 method for signature 'strucMatrixCompSymm'
chol(x, ...)

Arguments

x

an object that inherits from class strucMatrix

...

passed to subsequent functions

Note

These are often just bailout methods, but some special strucMatrix matrices have exploitable structure, which can be used to keep the number of repeated values down.

Examples

1
2
3
x <- strucMatrixCompSymm(1.2, -0.11, 4)
as.matrix(chol(x))
t(chol(as.matrix(x)))

stevencarlislewalker/lme4ord documentation built on May 30, 2019, 4:43 p.m.