Factor a matrix into the product of two matrices, e.g., 'a = l * u', returning both the first and second matrices.
Factor a matrix into the product of two matrices, e.g., 'a = l * l.t', returning only the first matrix.
Factor a matrix into the product of two matrices, e.g., 'a = l * l.t', returning only the second matrix.
Solve a system of equations, e,g., 'a * x = b' for 'x', using the factored matrices, by first performing forward substitution and then backward substitution.
Solve a system of equations, e,g., 'a * x = b' for 'x', using the factored matrices, by first performing forward substitution and then backward substitution.
the constant vector
The
Factorization
trait the template for classes implementing various forms of matrix factorization.