Linear Algebra and the C Language/a074

Gauss-Jordan Total Pivoting (TP)

In this algorithm the pivot chosen is the largest absolute value found in a matrix. For this we perform row and column exchanges.

Gaussian elimination, is an algorithm for solving systems of linear equations...Wikipedia: Gaussian elimination

The function: gj_TP_mR();

Solve: Ax = b

Solve: A|x1|x2| ... |xn| = b1|b2| ... |bn|

Compute the inverse of A: A|ID -> ID|InvA