How to "Modified" Cholesky Decomposition in Mathematica?
what I mean:
V = L . D . Transpose[L]
V is p*p(row is p,columns is p) non-negative definite matrix,
D is diag[$d\small1$,$d\small2$,$d\small3$,$d\small4$...$d\small p$] (Diagonal Matrix),
L is Lower triangular matrix,whose diagonal component is 1.
I found matlab package for example
OK,I've found that LDL factorization is called Modified Cholesky Decomposition. $\mathbf L\mathbf D\mathbf L^\top$ Cholesky decomposition
built-in (but undocumented) function?
Optimization`ModifiedCholeskyDecomposition

LinearSolveare $LU$-factorizations. – Henrik Schumacher Dec 09 '18 at 12:15