Module solve

Source
Expand description

Triangular solve module.

Functions§

solve_lower_triangular_in_place
Computes the solution of triangular_lower×X = rhs, and stores the result in rhs.
solve_lower_triangular_in_place_with_conj
Computes the solution of Op_lhs(triangular_lower)×X = rhs, and stores the result in rhs.
solve_unit_lower_triangular_in_place
Computes the solution of triangular_lower×X = rhs, and stores the result in rhs.
solve_unit_lower_triangular_in_place_with_conj
Computes the solution of Op_lhs(triangular_lower)×X = rhs, and stores the result in rhs.
solve_unit_upper_triangular_in_place
Computes the solution of triangular_upper×X = rhs, and stores the result in rhs.
solve_unit_upper_triangular_in_place_with_conj
Computes the solution of Op_lhs(triangular_upper)×X = rhs, and stores the result in rhs.
solve_upper_triangular_in_place
Computes the solution of triangular_upper×X = rhs, and stores the result in rhs.
solve_upper_triangular_in_place_with_conj
Computes the solution of Op_lhs(triangular_upper)×X = rhs, and stores the result in rhs.