LUResult

LUResult consist lu factorization.

Members

Functions

l
auto l()

L part of the factorization.

solve
auto solve(Slice!(kind, n, Iterator) b, char trans)
Undocumented in source. Be warned that the author may not have intended to support it.
u
auto u()

U part of the factorization.

Variables

ipiv
Slice!(Contiguous, [1], lapackint*) ipiv;

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

lut
Slice!(Canonical, [2], T*) 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