Expand description
Triangular solve module.
Functions§
- solve_
lower_ triangular_ in_ place - Computes the solution of
triangular_lower×X = rhs
, and stores the result inrhs
. - solve_
lower_ triangular_ in_ place_ with_ conj - Computes the solution of
Op_lhs(triangular_lower)×X = rhs
, and stores the result inrhs
. - solve_
unit_ lower_ triangular_ in_ place - Computes the solution of
triangular_lower×X = rhs
, and stores the result inrhs
. - solve_
unit_ lower_ triangular_ in_ place_ with_ conj - Computes the solution of
Op_lhs(triangular_lower)×X = rhs
, and stores the result inrhs
. - solve_
unit_ upper_ triangular_ in_ place - Computes the solution of
triangular_upper×X = rhs
, and stores the result inrhs
. - solve_
unit_ upper_ triangular_ in_ place_ with_ conj - Computes the solution of
Op_lhs(triangular_upper)×X = rhs
, and stores the result inrhs
. - solve_
upper_ triangular_ in_ place - Computes the solution of
triangular_upper×X = rhs
, and stores the result inrhs
. - solve_
upper_ triangular_ in_ place_ with_ conj - Computes the solution of
Op_lhs(triangular_upper)×X = rhs
, and stores the result inrhs
.