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 > | gaussSeidel (const Matrix< double > &A, const Matrix< double > &b) |
Gaussian elimination to solve systems of linear equations. Uses column major pivot elements to reduce number of operations.
Requires:
Gauss-Seidel algorithm to evaluate system of linear equations.
$$Ax = b$$
A | Coefficient matrix |
b | resulting vector |