Expand description
Triangular matrix inversion.
Functionsยง
- invert_
lower_ triangular - Computes the inverse of the lower triangular matrix
src
and stores the lower triangular part of the result todst
. - invert_
unit_ lower_ triangular - Computes the inverse of the lower triangular matrix
src
(with implicit unit diagonal) and stores the strictly lower triangular part of the result todst
. - invert_
unit_ upper_ triangular - Computes the inverse of the upper triangular matrix
src
(with implicit unit diagonal) and stores the strictly upper triangular part of the result todst
. - invert_
upper_ triangular - Computes the inverse of the upper triangular matrix
src
and stores the upper triangular part of the result todst
.