modifChol | R Documentation |
Computes the revised modified Cholesky factorization described in Schnabel and Eskow (1999).
modifChol(x, tau = .Machine$double.eps^(1 / 3),
tau_bar = .Machine$double.eps^(2 / 3), mu = 0.1)
x |
a symmetric matrix. |
tau |
(machine epsilon)^(1/3). |
tau_bar |
(machine epsilon^(2/3)). |
mu |
numeric, |
modif.chol
computes the revised modified Cholesky Factorization of a symmetric, not necessarily positive definite matrix x + E such that L'L = x + E
for E \ge 0
.
Upper triangular matrix L
of the form L'L = x + E
.
Sheila Görz
Schnabel, R. B., & Eskow, E. (1999). "A revised modified Cholesky factorization algorithm" SIAM Journal on optimization, 9(4), 1135-1148.
y <- matrix(runif(9), ncol = 3)
x <- psi(y)
modifChol(lrv(x))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.