philsupertramp/game-math
|
#include "../../Matrix.h"
#include "../../matrix_utils.h"
#include "LU.h"
#include "backwardSub.h"
#include "forwardSub.h"
#include <vector>
Go to the source code of this file.
Functions | |
Matrix< double > | gaussJordan (const Matrix< double > &A) |
Gaussian elimination to solve systems of linear equations. Uses column major pivot elements to reduce number of operations.
Requires:
Gauss-Jordan algorithm to calculate inverse of given squared matrix.
A | squared Coefficient matrix |