1.1 KiB
1.1 KiB
InverseTriangular
Computes the inverse of a upper or lower triangular matrix A. LAPACK function TRTRI.
Computing for type matrix
bool matrix::InverseTriangular(
matrix& AI // inverse of matrix A
);
Computing for type matrix
bool matrixf::InverseTriangular(
matrixf& AI // inverse of matrix A
);
Computing for type matrix
bool matrixc::InverseTriangular(
matrixc& AI // inverse of matrix A
);
Computing for type matrix
bool matrixcf::InverseTriangular(
matrixcf& AI // inverse of matrix A
);
Parameters
AI
[out] Inverted matrix.
Return Value
Return true if successful, otherwise false in case of an error.