choleskyDecomp

Computs Cholesky decomposition of symmetric positive definite matrix 'A'. The factorization has the form: \A = U**T * U, if UPLO = Upper, or \A = L * L**T, if UPLO = Lower Where U is an upper triangular matrix and L is lower triangular.

choleskyDecomp
(
Flag!"allowDestroy" allowDestroy = No.allowDestroy
Iterator
SliceKind kind
)
(
char uplo
,
Slice!(Iterator, 2, kind) a
)

Parameters

allowDestroy

flag to delete the source matrix.

a Slice!(Iterator, 2, kind)

symmetric 'N x N' matrix.

uplo char

if uplo is Upper, then upper triangle of A is stored, else lower.

Return Value

Type: auto

Meta