LDL: LDL

Description Arguments Value Examples

View source: R/RcppExports.R

Description

Fast inplace LDL decomposition of symmetric band matrix of length k.

Arguments

D

Rotated row-wised matrix of dimensions n*k, with first column corresponding to the diagonal, the second to the first super-diagonal and so on.

Value

List with D as solution of our LDL decomposition.

Examples

1
2
3
4
5
n=10;
D0=1:10;
D1=exp(-c(1:9));
D=cbind(D0,c(D1,0))
sol=LDL(D)

Monneret/bandsolve documentation built on May 7, 2019, 4:59 p.m.