Interface for results of Cholesky Decomposition
A Cholesky decomposition decomposes positive-definite symmetric matrices into either upper or lower triangles:
L*LT=A
RT*R=A
where L is a lower triangular matrix and R is an upper triangular matrix. This is typically used to invert matrices, such as a covariance matrix.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|