From: Hafsa on
matlab function chol( ) does Cholesky decomposition of the form: LL*
An alternative for of Cholesky decomposition is LDL' (http://
en.wikipedia.org/wiki/Cholesky_decomposition)
Does anyone know if matlab has a built-in routine for the later form?
From: Hafsa on
never mind....found the code: http://infohost.nmt.edu/~borchers/ldlt.html

From: John D'Errico on
Hafsa <qureshi.hafsa(a)gmail.com> wrote in message <9cfbcc2b-431d-41b6-9020-5002f4191d63(a)u9g2000yqb.googlegroups.com>...
> never mind....found the code: http://infohost.nmt.edu/~borchers/ldlt.html

Why do you need to look somewhere else when
it is already in matlab?

help ldl

John
From: Hafsa on
based on LDL' cholesky decomposition of matrix A, I want to solve for
alpha in A*alpha=phi
any built-in routine for that?

From: Hafsa on
it appears that mldivide( ) in Matlab solves A*alpha=phi using
Cholesky decomposition if A is symmetric and has real, positive
diagonal elements