Learn R Programming

Matrix (version 0.999375-2)

BunchKaufman-methods: Bunch-Kaufman Decomposition Methods

Description

The Bunch-Kaufman Decomposition of a square symmetric matrix $A$ is $A = P LDL' P'$ where $P$ is a permutation matrix, $L$ is unit-lower triangular and $D$ is block-diagonal with blocks of dimension $1\times 1$ or $2\times2$.

Usage

BunchKaufman(x, ...)

Arguments

x
a symmetric square matrix.
...
potentially further arguments passed to methods.

See Also

The resulting class, BunchKaufman. Related decompositions are the LU, lu, and the Cholesky, chol and Cholesky.

Examples

Run this code
data(CAex)
dim(CAex)
isSymmetric(CAex)# TRUE
CAs <- as(CAex, "symmetricMatrix")
if(FALSE) # no method defined yet
bk. <- BunchKaufman(CAs)
bkCA <- BunchKaufman(as(CAs, "denseMatrix"))
bkCA

Run the code above in your browser using DataLab