LUResult

LUResult consist lu factorization.

Members

Functions

l
auto l()

L part of the factorization.

solve
auto solve(char trans, Slice!(Iterator, N, kind) b)
u
auto u()

U part of the factorization.

Variables

ipiv
Slice!(lapackint*) ipiv;

The pivot indices, for 1 <= i <= min(M,N), row i of the matrix was interchanged with row ipiv(i).

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

Matrix in witch lower triangular is L part of factorization (diagonal elements of L are not stored), upper triangular is U part of factorization.

Meta