choleskyResult

Undocumented in source.

Members

Functions

solve
auto solve(Slice!(Iterator, N, kind) b)

Return solves a system of linear equations \A * X = B, using Cholesky factorization.

Variables

matrix
Slice!(T*, 2, Canonical) matrix;

if uplo = 'L', the leading 'N x N' lower triangular part of A contains the lower triangular part of the matrix A, and the strictly upper triangular part of A is zeroed. if uplo = 'U', the leading 'N x N' upper triangular part of A contains the upper triangular part of the matrix A, and the strictly lower triangular part of A is zeroed.

uplo
char uplo;

If uplo = 'L': lower triangle of 'matrix' is stored. If uplo = 'U': upper triangle of 'matrix' is stored.

Meta