Files
mql5-skills/skills/mql5/references/docs/06-matrix/0454-matrix-openblas-linear-equations-inversetriangular.md
T
2026-06-23 21:47:51 +08:00

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.