Module triangular_solve

Module triangular_solve 

Source
Expand description

triangular matrix solve Triangular solve module.

Functionsยง

solve_lower_triangular_in_place
solves $L x = b$, implicitly conjugating $L$ if needed, and stores the result in rhs
solve_lower_triangular_in_place_with_conj
solves $L x = b$, implicitly conjugating $L$ if needed, and stores the result in rhs
solve_unit_lower_triangular_in_place
solves $L x = b$, replacing the diagonal of $L$ with ones, and implicitly conjugating $L$ if needed, and stores the result in rhs
solve_unit_lower_triangular_in_place_with_conj
solves $L x = b$, replacing the diagonal of $L$ with ones, and implicitly conjugating $L$ if needed, and stores the result in rhs
solve_unit_upper_triangular_in_place
solves $U x = b$, replacing the diagonal of $U$ with ones, and implicitly conjugating $U$ if needed, and stores the result in rhs
solve_unit_upper_triangular_in_place_with_conj
solves $U x = b$, replacing the diagonal of $U$ with ones, and implicitly conjugating $U$ if needed, and stores the result in rhs
solve_upper_triangular_in_place
solves $U x = b$, implicitly conjugating $U$ if needed, and stores the result in rhs
solve_upper_triangular_in_place_with_conj
solves $U x = b$, implicitly conjugating $U$ if needed, and stores the result in rhs